* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  background-color: #000;
  color: #425466;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.landing-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 785px;
  max-height: 100%;
  object-fit: cover;
  z-index: 0;
}

.main {
  position: relative;
  z-index: 1;
  padding: 7rem 0 0;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
}

.hero {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto 50px;
  padding: 0 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-rocket {
  height: 250px;
  width: auto;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-rocket {
    animation: none;
  }
}

.title {
  color: #ffd100;
  font-size: 1.9rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.sub-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  padding: 0 10rem;
  width: 70%;
}

.cta-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #ffd100;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #e6be00;
}

@media (max-width: 600px) {
  .hero {
    padding: 0 1.2rem;
  }
  .hero-rocket {
    height: 10rem;
  }
  .title {
    font-size: 1.625rem;
  }
  .sub-title {
    width: 100%;
    padding: 0 1rem;
    font-size: 1.25rem;
  }
}
