body {
    background-color: black !important;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    height: -webkit-fill-available;
    height: fill-available;

    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}


#video_container{
    display: none;
}

#video-player{
    position: absolute;
    top: 0;
    left: 0; 
    overflow: hidden;
    width: 100% !important;
    height: 100% !important;
    text-align: center;
}

#remoteVideo{
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    height: 100% !important;
    width: 100% !important; 
    display: none; 
}



#video-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform:translate(-50%, -50%);
    /*
    bottom: 50%;
    right: 50%;

    */
    display: none; 
    z-index: 9999999;
    text-align: center;
}
#video-overlay img{
    width: 25%;
}

@media (max-width: 480px) {

    #remoteVideo {
        position: absolute;
        top: 0;
        left: 0;
        height: auto !important;
    }
}
