#zoomContainer {
    width: 70%;
    display: flex;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
#animationContainer {
    width: 33%;
}
#contentWrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
#zoomIframe {
    width: 60vw;
    height: calc((60vw/16)*9);
    -height: 50px;
    min-height: 600px;
}
.webWarning {
    padding: 15px;
    background: rgb(251, 114, 17);
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
}
.webWarning i {
    color: white;
    font-size: 40px;
    margin-right: 20px;
}
#captureContainer {
    width: 200px;
    height: 345px;
    overflow: hidden;
}
#captureIframe {
    width: 200px;
    height: 345px;
}

@media screen and (max-width: 800px){
    #zoomContainer {
        width: 100%;
    }
    #contentWrapper {
        flex-wrap: wrap;
    }
    #zoomIframe {
        width: 90vw;
        height: calc((90vw/16)*9);
        -height: 50px;
        min-height: 600px;
    }
}