#modal-video {
    align-items: center;
    -webkit-backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all 0.3s ease-in-out;
    width: 100vw;
    z-index: -1;
}

#modal-video.active {
    opacity: 1;
    z-index: 1000;
}

#modal-video .close {
    align-items: center;
    background: #a61d2a;
    color: white;
    cursor: pointer;
    display: flex;
    font-size: 30px;
    font-weight: bold;
    justify-content: center;
    line-height: 30px;
    padding: 10px 20px;
}

#modal-video iframe {
    height: 90vh;
    width: 30vw;
}

@media only screen and (max-width: 600px) {
    #modal-video iframe {
        height: 90vh;
        width: 90vw;
    }
}
