body {
  font-family: "Lato", sans-serif;
  background: linear-gradient(180deg, #de1d08 0%, #aa1a0a 100%) #aa1a0a;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.landing-page {
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.container {
  padding: 0 60px 0;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  justify-items: center;
  align-items: center;
}

.iphone-section {
  justify-self: end;
}

.welcome-text {
  font-size: 2.5rem;
  line-height: 1;
  color: #f2f2f2;
  margin-bottom: 3.5rem;
}

.heading-text {
  font-size: 6.5rem;
  line-height: 1.25;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.heading-first-line-text {
  font-size: 12.25rem;
}

.subheading-text {
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  margin-bottom: 8rem;
}

.description-text {
  font-size: 1.5rem;
  line-height: 1.25;
  color: #d1d1d1;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  gap: 1.5rem;
}

.footer-link {
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid white;
  transition: border-color 0.3s ease;
}

.footer-link:hover {
  border-bottom-color: transparent;
}

@media (max-width: 1200px) {
  .container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 40px;
  }

  .content-section {
    text-align: center;
    padding: 60px 0 20px 0;
  }

  .iphone-section {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .container {
    gap: 80px;
    padding: 0 30px;
  }

  .welcome-text {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .heading-text {
    font-size: 4rem;
    margin-bottom: 3rem;
  }

  .heading-first-line-text {
    font-size: 7.5rem;
  }

  .subheading-text {
    margin-bottom: 6rem;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .welcome-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .heading-text {
    font-size: 3rem;
    margin-bottom: 2rem;
  }

  .heading-first-line-text {
    font-size: 5.6rem;
  }

  .subheading-text {
    font-size: 1rem;
    margin-bottom: 4rem;
  }

  .description-text {
    font-size: 1rem;
  }
}
