/* Styles pour la galerie vidéo */
#video-gallery {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
}

#video-gallery video {
  width: 300px;
  height: auto;
  margin: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}

#video-gallery img {
  width: 300px;
  height: auto;
  margin: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}

#video-gallery img:hover {
  transform: scale(1.1);
}

#video-gallery iframe {
  width: 300px;
  height: auto;
  margin: 10px;
  cursor: pointer;
  transition: transform 0.2s;
}

#video-gallery iframe:hover {
  transform: scale(1.1);
}



#video-gallery video:hover {
  transform: scale(1.1);
}

/* Styles pour la vidéo affichée en plein écran */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 3;
}