
body {
    margin : 0;
}

.video-container {
    display : block;
    position: relative;
    width : 100%;
    height : 100vh;
    background-color : #000000;
}

 
iframe {
    position: relative;
    top : calc(50vh - 28.125vw);
    width : 100%;
    height : 56.25vw;
}

.return-button {
    position : absolute;
    font-size: 20px;
    border-radius: 10px;
    width : 110px;
    left : -55px;
    margin-left : 50%;
    bottom : 15px;
    padding : 5px 0 5px 0;
    background-color : #ff7f00;
    text-decoration: none;
    color: #ffffff;
    }

.return-button:hover {
    background-color: #c06030;
}


@media (min-aspect-ratio: 16/9) {
    

   iframe {
       top : 0;
       left : calc(50vw - 88.5vh);
       width : 177vh;
       height : 100vh;
   }
}
