.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_subtitle{
     text-transform: uppercase;
    color: var(--clr-stn300);
    font-size: var(--size-base);
    line-height: 0.9;
    font-family:  'General Sans', sans-serif;
}

.hero_title{
    color: var(--clr-ntrl400);
    text-transform: uppercase;
    font-size: var(--size-3xl);
    letter-spacing: -0.05em;
    line-height: 0.9;
  font-family: 'General Sans', sans-serif;

}

.hero_description{
    max-width: 60ch;
    font-size: var(--size-s);
    color: var(--clr-stn300);
    font-family: 'monospace';
}

.hero_btn {
    text-transform: capitalize;
    font-size: var(--size-s);
}
@media (min-width: 475px){
    .hero {
    gap: 1.5rem;
  }

  .hero__img {
    width: 6.5rem;
    height: 6.5rem;
  }

  .hero_subtitle {
    font-size: var(--size-lg);
  }

  .hero_title {
    font-size: var(--size-5xl);
  }

  .hero_description {
    font-size: var(--size-base);
  }

  .hero__btn {
    font-size: var(--size-base);
  }
}



@media (min-width: 1024px) {
  .hero__img {
    width: 8rem;
    height: 8rem;
  }

  .hero_subtitle {
    font-size: var(--size-2xl);
  }

  .hero_title {
    font-size: var(--size-7xl);
  }

  .hero_description {
    font-size: var(--size-lg);
  }

  .hero_btn {
    font-size: var(--size-lg);
  }
}


@media (min-width: 1280px) {
  .hero {
    gap: 2rem;
  }

  .hero__img {
    width: 10rem;
    height: 10rem;
  }

  .hero_subtitle {
    font-size: var(--size-4xl);
  }

  .hero_title {
    font-size: var(--size-9xl);
  }

  .hero_description {
    font-size: var(--size-xl);
  }

  .hero_btn {
    font-size: var(--size-xl);
  }
}