.mainContainer{
    height: 35vh;
    width: 100%;
    background-image: url('../assets/img/banner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;

    @media screen and (max-width: 990px ){
        margin-top: 10%;

    }
    margin-top: 5%;
}
.mask{
    height: 35vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    color: azure;
    
}
.content{
    height: 35vh;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* border: red solid 2px; */
}
.content .small{
    font-size: 40px;

    @media (max-width: 500px ){
        font-size: 30px;
    }
}
.content .big{
    font-size: 60px;
    word-spacing: 10px;
    @media (max-width: 500px ){
        font-size: 40px;
    }
}

