#banner {
    display: inline-block;
    width: 100%;
    margin: 0;
}

#banner .content {
    margin-left: 15%;
    margin-right: 15%;
    margin-top: 190px;
}

#banner .content .header {
    font-size: 61px;
    font-weight: bold;
    color: var(--primary);
    text-align: center;
}

#banner .content .text {
    font-size: 20px;
    margin-top: 33px;
    text-align: center;
}

@media only screen and (max-width: 1300px){
    #banner .content .header {
        font-size: 53px;
    }
    #banner .content .text {
        font-size: 21px;
    }
}

@media only screen and (max-width: 900px){
    #banner .content{
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 50px;
        margin-top:60px;
    }
    #banner .content .header{
        font-size: 40px;
    }
    #banner .content .text{
        font-size: 20px;
        height: auto;
    }
}