#videoLightBox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
    display: none;
}

#videoLightBox video {
    max-width: 1276px;
    max-height: 720px;
    width: 80%;
    height: auto;
    top: calc(50% - 360px);
    left: calc(50% - 640px);
    border: 2px white solid;
    border-radius: 4px;
    position: fixed;
}

#videoLightBox .video-title  {
    top: calc(50% + 370px);
    color: whitesmoke;
    left: calc(50% - 640px);
    position: fixed;
}

@media all and (max-width: 1276px)
{
    #videoLightBox .video-title {
        display: none;
    }

    #videoLightBox video {
        top: 10%;
        left: 10%;
    }
}