#overlay {
    z-index:1;
    background-color: rgb(0 0 0 / 60%);
    position : fixed;
    inset:0; /* inset 0 est équivalent à top, left, right, bottom à 0, ce qui revient au plein écran*/       
    display: flex;
    justify-content: center;
    align-items: center;
}

#overlay img, #overlay video {
    width: auto; /* taille naturelle par défaut */
    height: auto;

    max-width:86vw;
    max-height:85vh;
    object-fit: contain;
}