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

}
.container__header{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.hero__title{

    font-size: var(--size-4xl );
    text-transform: uppercase;
    color: var(--clr-dark);
    letter-spacing: -0.05em;
    line-height: 0.9;
    letter-spacing: 1.5px;
    color:rgb(226, 227, 226);
}
.hero__text{
    max-width: 60ch;
    font-size: var(--size-sm);
    color: var(--clr-slate800);
    font-weight: 600;
    margin-top: 5rem;
    
    
}
.hero__btn{
   text-transform: capitalize;
    font-size: var(--size-sm);
}


/* xs */
@media (min-width: 475px) {
   
    .hero{
        
        gap :2.5rem;
        
    
    }
    .hero__title{
    
        font-size: var(--size-5xl );
    }
    .hero__text{
        font-size: var(--size-base);

    }
    .hero__btn{
        font-size: var(--size-base);
    }
  }
  /* sm */
  @media (min-width: 640px) {
      .hero__text{
        margin-top: 0;
        color: rgb(226, 227, 226);
        font-weight: 400;
      }
      .hero__title{
        color: rgb(226, 227, 226);
  }
  /* md */
  @media (min-width: 768px) {
      
  }
  /* lg */
  @media (min-width: 1024px) {
   
    .hero__title{
    
        font-size: var(--size-6xl );
    }
    .hero__text{
        font-size: var(--size-lg);

    }
    .hero__btn{
        font-size: var(--size-lg);
    }
  }
  
  /* xl */
  @media (min-width: 1280px) {
    .hero{
        gap: 2rem;
    }
    .hero__title{
        margin: 0 auto;
       
        font-size: var(--size-5xl );
    }
    .hero__text{
        font-size: 1.25rem;
        margin: 0 auto;
        font-weight: 400;
        width: 60ch;
        
    }
    .hero__btn{
        font-size: var(--size-xl);
    }
    
  }
  /* 2xl */
  @media (min-width: 1536px) {
      
  }
}