html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: black; /* couleur des bords */
}

#video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);

    width: 100vw;
    height: 100vh;

    object-fit: contain; /* garde toute la vidéo */
    
    background: black;
    z-index: 0;
}