.hero {
  background: linear-gradient(
      90deg,
      rgba(21, 21, 22, 0.7721463585434174) 54%,
      rgba(5, 5, 5, 1) 96%
    ),
    url(../img/hero.webp);
  width: 100%;
  height: 100dvh;
  padding-top: 0rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.text__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.hero__title {
  padding: 1rem;
  font-size: 7rem;
  font-family: var(--title-font);
  font-weight: 400;
  background: rgb(130, 243, 255);
  background: linear-gradient(
    180deg,
    rgba(130, 243, 255, 1) 25%,
    rgba(255, 80, 167, 1) 96%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__description {
  color: white;
  font-size: 2rem;
}
.elefante {
  width: 20rem;
  animation: anim 4s infinite;
  animation-delay: 0.9s;
}

@keyframes anim {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }

  100% {
    transform: translateY(0);
  }
}

.btn__descargar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 2rem;
  font-size: 1.5rem;
  margin-top: 2rem;
  border-radius: 13px;
  background-color: black;
  border: 2px solid rgb(0, 255, 234);
  color: rgb(0, 255, 234);
}
@media screen and (max-width: 768px) {
  .hero__title {
    font-size: 3rem;
    text-align: center;
  }
  .hero__description {
    font-size: 1.4rem;
  }
  .elefante {
    width: 15rem;
  }
}
