* {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

body {
    overflow-y: hidden;
    cursor: none;
    
}
body.intro {
    overflow-x: hidden;
}
.scenes-container {
    display: flex;
}

.scene {
    position: relative;
    flex-shrink: 0;
    height: 100vh;
    width: auto;
    overflow: hidden;
  }
  .first-scene {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .first-scene img {
    top: 0!important;
    margin: 0 auto;
  }
  .scene img {
    position: relative;
    top: 5vh;
    height: 90vh;
    width: auto;
    object-fit: cover;
  }
  

.nuage {
    position: absolute;
    width: 180px;
    height: 180px;
    overflow: hidden;
    transform-origin: center center;
    pointer-events: none;
    background-size: auto 90vh;
    display: none;
    background-repeat: no-repeat;
    }
.nuage.active {
    display: block;
}
#nuage1, #nuage1-contour {
    clip-path: circle(50% at 50% 50%);
  }
  #nuage2, #nuage2-contour {
    clip-path: circle(50% at 50% 50%);
  }
  
#nuage3, #nuage3-contour {
    clip-path: circle(50% at 50% 50%);
}
#nuage4, #nuage4-contour {
    clip-path: circle(50% at 50% 50%);
  }
  #nuage5, #nuage5-contour {
    clip-path: circle(50% at 50% 50%);
  }
  
#nuage6, #nuage6-contour {
    clip-path: circle(50% at 50% 50%);
}
.nuage.contour {
    background-color: #888; 
    z-index: 0;
    /*transform: scale(1.03) translate(1%, 1%);
    transform-origin: center center;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));*/
  }


.separator {
    height: 100vh;
    min-width: 400px;
}
#video-final {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    padding: 0;
    margin: 0;
  }


#unlock-zone {
    position: absolute;
    width: 80px;
    height: 70px;
    top: 74vh;
    background: transparent; /* invisible */
    z-index: 9999;
  }

  #sound-toggle {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    z-index: 9999;
    cursor: pointer;
  }
  
  #sound-toggle img {
    width: 100%;
    height: 100%;
  }