body {
    margin: 0;
    padding: 0;
    background: #333333;
}

#video {
    position: relative;
    right: 0;
    bottom: 0;
    object-fit: scale-down;
}

#videoBg {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    object-fit: scale-down;
}

#videoBg>video {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: scale-down;
}

/* @media (min-aspect-ratio: 4/3) {
    #videoBg>video {
        height: auto;
        top: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    #videoBg>video {
        width: 100%;
        left: auto;
    }
}

@supports (object-fit: contain) {
    #videoBg>video {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    background: #ffffff00;
    z-index: 2;
}

.flexCon {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#videoMessage {
    z-index: 1;
    position: relative;
} */

.play-button-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    pointer-events: none;
}

.play-button-wrapper #circle-play-b {
    cursor: pointer;
    pointer-events: auto;
}

.play-button-wrapper #circle-play-b svg {
    width: 100%;
    height: 100%;
    fill: #fff;
    stroke: #fff;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    opacity: 0.9;
}