#banner{
    width: 100%;
    height: 270px;
    background: linear-gradient(to bottom, rgba(0, 31, 63, 0.8) 10%, rgba(0, 31, 63, 0.8) 100%), url(../img/banners/banner.jpg);
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

#banner-body{
    text-align: center;
    font-size: 25px;
    color: white;
    /* text-transform: uppercase; */
    font-weight: bold;
    width: 60%;
    margin: 0 auto;
}

@media only screen and (max-width: 599px) {
    #banner-body{
        width: 90%;
        margin: 0 auto;
        font-size: 20px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px){
    #banner{
        height: 300px;
    }
}