html {
  min-height: 100%;
}

body {
  height: 100%;
}

video { 
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  background: url('/video/video.jpg') no-repeat;
  background-size: cover;
  transition: 1s opacity;
  -webkit-filter: blur(8px);
  -moz-filter: blur(8px);
  -o-filter: blur(8px);
  -ms-filter: blur(8px);
  filter: blur(8px);
}

footer {
  position: fixed;
  bottom: 16px;
  right: 16px;
}

.liens {
  padding: 8px;
  border-radius: 32px;
  background-color: white;
}

.slideshow {
  list-style: none;
  z-index: 1;
}
.slideshow li h3 {
  position: absolute;
  text-align: center;
  z-index: 2;
  bottom: 0px;
  left: 0;
  right: 0;
  opacity: 0;
  font-size: 4.0625em;
  font-family: Didot, 'Didot LT STD', 'Hoefler Text', Garamond, 'Times New Roman', serif;
  text-transform: uppercase;
  color: #fff;
  -webkit-animation: titleAnimation 72s linear infinite 0s;
  -moz-animation: titleAnimation 72s linear infinite 0s;
  animation: titleAnimation 72s linear infinite 0s;
}
@media only screen and (min-width: 768px) {
  .slideshow li h3 {
    bottom: 0px;
    font-size: 8.125em;
  }
}
@media only screen and (min-width: 1024px) {
  .slideshow li h3 {
    font-size: 10.9375em;
  }
}

@-webkit-keyframes titleAnimation {
  0% {
    opacity: 0;
  }
  4.166% {
    opacity: 1;
  }
  8.333% {
    opacity: 1;
  }
  12.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes titleAnimation {
  0% {
    opacity: 0;
  }
  4.166% {
    opacity: 1;
  }
  8.333% {
    opacity: 1;
  }
  12.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes titleAnimation {
  0% {
    opacity: 0;
  }
  4.166% {
    opacity: 1;
  }
  8.333% {
    opacity: 1;
  }
  12.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
