video {
    width: 800px;
    height: 800px;  
}


.container-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100000000;
    position: fixed;
    height: 100vh;
    display:none;
}



.modal {
    color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
     top: 50%; 
    transform: translateY(-50%);  
}


.modal-content {
    padding: 30px 90px;
}


.close-modal {
    position: fixed;
    top: 30px;
    right: 40px;
    font-size: 24px;
    font-family: 'FontAwesome';
    cursor:pointer;
}


@media only screen and (max-width: 1600px){

.close-modal {
    top: 80px;
   
}

video {
    width: 700px;
    height: 700px;
}

}


@media only screen and (max-width: 700px){


.modal-content {
    padding: 0;
}

.modal {
    left: 0;
}

video {
    width: 98vw;
    height: auto;
    margin: 0 auto;
    margin-left: -16px;
}

.container-modal {
    background-color: rgba(0, 0, 0, 0.9);
    
}

.close-modal {
    position: fixed;
    top: -13px;
    right: 15px;
    font-size: 20px;
    font-family: 'FontAwesome';
}


}