body {
    margin: 0;
    padding: 0;
    
    font-family: 'Space Grotesk', sans-serif;
}

.choice-screen {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.choice {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.5s ease;
}

.choice .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease, filter 0.5s ease;
}

.choice h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4vw;
    text-shadow: 0 0 20px rgba(0,0,0,0.6);
    z-index: 20;
}


.choice:hover {
    flex: 1.2;
}

.choice:hover .bg {
    transform: scale(1.15);
}

.choice:not(:hover) .bg {
    filter: brightness(0.5);
}


.media-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.media-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.blackout {
    position: absolute;
    inset: 0;
    background: rgb(0, 0, 0);
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 1;   
}

.media-container {
    /* max-width: 100%;
    max-height: 100%; */
    height: 100vh;
    width: 100vw;
    /* width: auto;
    height: auto; */ 
    border-radius: 8px;
    display: block;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 2;   
    position: absolute;
    inset: 0;
}


.media-container.visible {
    opacity: 1;
}



video {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.bonjour{
  
    figure { 
        margin: 0;
    }
    img {
        display: block;
    }
    figcaption {
        margin-top: 1em;
    }
    iframe {
        width: 100%;
    }

}