@import url('./root.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800;900&display=swap');

header{
    min-height: 20vh;
}
.banner{
    background-color: var(--gray-dark);
    padding: 4vh 0;
}

h1{
    font-size: 3rem;
}
.banner h1{
    color: white;
    text-shadow: 1px 3px 2px rgba(0, 0, 0, 0.35);
    font-family: Inter;
    font-size: 3rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.7vh;
    text-align: center;    
    }

.banner strong{
    font-weight: 700;
}

@media screen and (max-width: 1600px){
    .row h1{            
        font-size: 1.5rem;
       
        font-weight: 700;        
    }
    .banner h1{font-size: 2.7rem;}


}

@media(max-width: 700px){
    .row h1{            
        font-size: 1.5rem;
        text-align: center;
        font-weight: 700;        
    }

}


