
@media screen and (min-width: 800.1px) {
    .VIDEO-container {
        width: 980px;
        height: 551px;
        border-radius: 32px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-color: gray;
        overflow: hidden;
    }

    .VIDEO-container video {
        width: 100%;
        height: 100%;
        z-index: 10;
    }
}


@media screen and (max-width: 800px) {
    .VIDEO-container {
        width: 100%;
        height: auto;
        border-radius: 9px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-color: gray;
        overflow: hidden;
    }

    .VIDEO-container video {
        width: 100%;
        height: 100%;
        z-index: 10;
    }
}
