* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: black;        
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .conteneur {
            position: relative;
            width: 100%;
            height: 100vh;
            height: 100svh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: black;        
        }        
        .photo {
            display: block;
            height: 100%;
            width: auto;
            max-width: 100%;
            object-fit: contain;
            cursor: pointer;
        }
      
        .overlay-plein-ecran {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: black;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        .overlay-plein-ecran img {
            height: 100vh;
            width: auto;
            object-fit: contain;
        }
        @supports (-webkit-touch-callout: none) {
            .overlay-plein-ecran {
                height: 100svh;
            }
            .overlay-plein-ecran img {
                height: 100svh;
            }
        }
        .indice {
            position: absolute;
            bottom: 30px;
            background: rgba(0,0,0,0.6);
            color: white;
            padding: 6px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            pointer-events: none;
        }