.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__img {
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
}

.hero__title {
  color: var(--color-slate400);
  text-transform: uppercase;
  font-size: var(--size-l);
}

.hero__subtitle {
  color: var(--color-slate800);
  font-size: var(--size-base);
}

.hero__description {
  max-width: 60ch;
  font-size: var(--size-s);
  color: var(--color-lightest);
}

.hero_btn {
  text-transform: capitalize;
  font-size: var(--size-s);
}

/* medium */
@media (min-width: 600px) {
  .hero {
    gap: 1.5rem;
  }

  .hero__img {
    width: 6.5rem;
    height: 6.5rem;
  }

  .hero__title {
    font-size: var(--size-xl);
  }

  .hero__subtitle {
    font-size: var(--size-m);
  }

  .hero__description {
    font-size: var(--size-base);
  }

  .hero_btn {
    font-size: var(--size-base);
  }
}

/* expanded */
@media (min-width: 840px) {
  .hero__img {
    width: 7rem;
    height: 7rem;
  }

  .hero__title {
    font-size: var(--size-2xl);
  }

  .hero__subtitle {
    font-size: var(--size-l);
  }

  .hero__description {
    font-size: var(--size-m);
  }

  .hero_btn {
    font-size: var(--size-m);
  }
}

/* large */
@media (min-width: 1200px) {
  .hero__img {
    width: 8rem;
    height: 8rem;
  }

  .hero__title {
    font-size: var(--size-3xl);
  }

  .hero__subtitle {
    font-size: var(--size-xl);
  }

  .hero__description {
    font-size: var(--size-l);
  }

  .hero_btn {
    font-size: var(--size-l);
  }
}

/* extra-large */
@media (min-width: 1600px) {
  .hero__img {
    width: 10rem;
    height: 10rem;
  }

  .hero__title {
    font-size: var(--size-4xl);
  }

  .hero__subtitle {
    font-size: var(--size-2xl);
  }

  .hero__description {
    font-size: var(--size-xl);
  }

  .hero_btn {
    font-size: var(--size-xl);
  }
}
