/* -------------- Tout type d'écran -------------- */

.overlayed {
    overflow: hidden !important;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--overlay-background-color);
    backdrop-filter: blur(2px);
}

#overlay .close {
    display: block;
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-image: url('/assets/img/close.png');
}

#youtube {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Proportion des vidéos youtube : 560x315 = 100x56.25 */
    width: 70vw;
    height: 39.375vw;
}

#youtube iframe {
    width: 100%;
    height: 100%;
}

#youtube.showed {
    display: block;
}

/* -------------- Petits écrans -------------- */
@media all and (max-width:690px) {
    #youtube {
        /* Proportion des vidéos youtube : 560x315 = 100x56.25 */
        width: 100vw;
        height: 56.25vw;
    }
}