* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  font-size: 1rem;
  line-height: 1.25;
}

a {
  color: inherit;
}

img, video {
  max-inline-size: 100%;
  block-size: auto;
  vertical-align: middle;
}

.container {
  height: 100vh;
  width: 100vw;
  color: #fff;
  background: #000;
  flex-flow: column;
  display: flex;
}

.video-container {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.fullscreen {
  height: 100vh;
  width: 100vw;
}

video {
  width: 40%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  opacity: 0;
  transform: translate(calc(50vw - 50%), calc(50vh - 50%));
}

.video-container.fullscreen:after {
  content: "Cliquez sur l'écran pour quitter";
  width: fit-content;
  color: #fff;
  opacity: 1;
  padding: 5px;
  font-family: Space Grotesk, sans-serif;
  font-size: 20px;
  transition: opacity .5s;
  animation: fadeOut .5s 6s forwards;
  position: absolute;
  bottom: 10px;
  right: 50%;
  transform: translateX(50%);
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

.preview {
  object-fit: cover;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1000;
  position: absolute;
}

.preview:hover img {
  filter: saturate();
  transition: all .2s;
  transform: scale(1.05);
}

.preview1 {
  bottom: 10px;
  right: 10px;
}

.preview2 {
  bottom: 10px;
  left: 10px;
}

.preview3 {
  top: 10px;
  right: 10px;
}

.preview4 {
  top: 10px;
  left: 10px;
}

.preview.inactive, .information.inactive {
  display: none;
}

.information {
  z-index: 100;
  width: 100%;
  height: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 30px;
  font-family: Space Grotesk, sans-serif;
  font-size: 20px;
  transition: all .3s;
  display: flex;
  position: absolute;
}

img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: saturate(0);
  transition: all .3s;
}

.img-container {
  width: 30vh;
  height: 30vh;
  overflow: hidden;
}

.info2 {
  justify-content: flex-end;
}

.info3 {
  align-items: flex-end;
  font-size: 12px;
}

.info4 {
  justify-content: flex-end;
  align-items: flex-end;
}

body.info {
  color: #fff;
  height: 100vh;
  text-align: center;
  background: #000;
  justify-content: center;
  align-items: center;
  padding: 100px;
  font-family: Space Grotesk, sans-serif;
  font-size: 25px;
  display: flex;
}

.plusicon {
  font-size: 50px;
  line-height: 20px;
}

a {
  text-decoration: none;
}

@media (min-width: 768px) {
  .container {
    height: 100vh;
    width: 100vw;
    flex-flow: wrap;
    display: flex;
  }

  .video-container {
    height: 50%;
    width: 50%;
    overflow: hidden;
  }

  .fullscreen {
    height: 100vh;
    width: 100vw;
  }
}

@media (hover: none) {
  .information {
    opacity: 1;
    z-index: 100;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 50px;
    display: flex;
    position: absolute;
  }

  .container {
    flex-flow: column;
    display: flex;
  }

  .img-container {
    width: 70%;
    height: 100%;
    bottom: 0;
    left: 0 !important;
  }

  .preview3 {
    top: initial;
    bottom: 0 !important;
  }

  .information {
    z-index: 10000;
    pointer-events: none;
    justify-content: end;
    align-items: flex-start;
    padding-right: 20px;
    font-size: 15px;
  }

  .video-container.fullscreen:after {
    content: "Cliquez sur l'écran pour quitter";
    width: fit-content;
    color: #fff;
    opacity: 1;
    padding: 5px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    transition: opacity .5s;
    animation: fadeOut .5s 10s forwards;
    position: absolute;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
  }
}

/*# sourceMappingURL=index.b10d73a7.css.map */
