.hero {
  padding-top: 12rem;
}

.hero__title {
  font-weight: 800;
  font-size: 2.25rem;
}

@keyframes pulse {
  0% {
    translate: -50% 50%;
  }
  50% {
    translate: -50% 0;
  }
  100% {
    translate: -50% 50%;
  }
}

.hero__button {
  text-decoration: none;
  width: 1.75rem;
  position: absolute;
  bottom: 3rem;
  left: 50%;
  translate: -50% 0;
  animation: pulse infinite ease-in-out 2s;
}

@media (width >= 475px) {
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__button {
    width: 2rem;
  }
}

@media (width >= 768px) {
  .hero__title {
    font-size: 3rem;
  }
  .hero__button {
    width: 2.25rem;
  }
}

@media (width >= 1024px) {
  .hero__title {
    font-size: 3.75rem;
    max-width: 600px;
  }
}

@media (width >= 1280px) {
  .hero__title {
    font-size: 4.5rem;
    max-width: 900px;
  }
}
