@media only screen and (min-width: 992px) {
    #cont1{
        max-width: 900px;
    }
}

@media only screen and (min-width: 1200px) {
    #cont1{
        max-width: 900px;
    }
}

@media only screen and (min-width: 1400px) {
    #cont1{
        max-width: 900px;
    }
    #cont2{
        max-width: 1200px;
    }
}

#latest-video{
    background-color: #121112;
    text-align: center;
    width: 90%;
    margin: 0 auto;
}

#latest-text{
    color: white;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 5vmin; /*makes the font size responsive to browser width/height*/
    /*making transform scale work by disabling mobirise shit*/
    -webkit-animation-name: none;
    animation-name: none;
    transition: ease-in-out 0.3s;
}

#latest-text:hover{
    transform: scale(1.07);
}

#latest-video div{
    max-width: 650px;
    max-height: 369px;
    margin: 0 auto;
}

#video-container{
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

#video-container iframe{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}