/** Donna Galletta | LIGHTBOX MARKUP **/

.lightbox {
  /** Default lightbox to hidden */
  display: none;

  /** Position and style */
  position: fixed;
  z-index: 29;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.8);
}
.lightbox:target {
  /** Remove default browser outline */
  outline: none;

  /** Unhide lightbox **/
  display: block;
}

/** videoModal **/
#video {
  width: 100%;

}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
}


 .video-header {
    color: var(--jaune);
    padding-bottom: 20px;}


 .video-header .close {
  position: fixed;
    margin: 0;
    opacity: 1;
    right: 50px;
    top: 50px;
    width: 40px;
    height: 40px }
