.section {
  width: 100%;
  height: 100vh;
}

.background {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.container {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  position: relative;
}

.heading-frame {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-transform: uppercase;
  flex-flow: column;
  display: flex;
}

.h1 {
  color: #df1a1a;
  letter-spacing: -5px;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 90px;
  font-weight: 900;
  line-height: 100%;
}

.body {
  font-family: Open Sans, sans-serif;
}

.h2 {
  color: #000;
  letter-spacing: -2px;
  font-size: 30px;
  font-weight: 700;
  line-height: 100%;
}

.h3 {
  letter-spacing: -.5px;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
}

@media screen and (min-width: 1440px) {
  .h1 {
    font-size: 10vw;
  }

  .h2 {
    font-size: 3vw;
  }

  .h3 {
    font-size: 2vw;
  }
}

@media screen and (max-width: 767px) {
  .h1 {
    font-size: 87px;
  }
}

@media screen and (max-width: 479px) {
  .background {
    object-position: 68% 50%;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .h1 {
    font-size: 16.2vw;
  }

  .h2 {
    letter-spacing: -1px;
    font-size: 25px;
  }

  .h3 {
    text-align: right;
    width: 100%;
  }
}


