* {
  font-family: "Inter", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
}

.wrapper {
  min-height: 100vh;
}

.hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(
    to bottom right,
    #000000 0%,
    #e37400 30%,
    #f9ab00 45%,
    #f9ab00 55%,
    #e37400 70%,
    #000000 100%
  );
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__inner {
  width: 900px;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero__callout {
  padding: 0.5rem 1rem;
  background-color: #e37400;
  color: #f7c354;
  font-size: 0.9rem;
  border-radius: 4rem;
  font-weight: 600;
}

.hero__title {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin: 2rem 0;
}

.hero__description {
  width: 80%;
  color: #fff;
  margin: 0;
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.5rem;
}

.hero__cta-group {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.hero__cta {
  text-decoration: none;
  padding: 1rem 1.5rem;
  background: #f7c354;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
}

.hero__cta:last-of-type {
  background: #e37400;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2.2rem;
  }

  .hero__description {
    font-size: 1rem;
  }

  .hero__cta-group {
    flex-direction: column;
  }

  .hero__cta {
    width: 100%;
  }
}
