body{
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

  /* HEADER */ 

  header{
    position: fixed;
    margin: 0;
    top: 20px;
    left: 20px;
    text-transform: uppercase;
  }

  h1{
    font-weight: 100;
    font-size: 30px;
    margin: 0;
    color: #OOOOOO;
  }
  h2{
    font-weight: 700;
    font-size: 30px;
    margin: 0;
    color: #OOOOOO;
  }

  /* SUBHEADER */ 

  h3{
    position: fixed;
    font-size: 15px;
    margin: 0;
    left: 20px;
    bottom: 20px;
    text-transform: lowercase;
    font-size: 12px;
    font-weight: 400;
    white-space: pre;
  }

  /* CLOCK  */ 

  #clock{
    position: fixed;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }

  /* MUTE CONTROLER */

  #video-controls{
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }

  #video-controls button{
    background: none;
    border: none;
   }

  #video-controls img{
    width: 50px;
    height: auto;
   }

  /* SOCIAL ICONS */

  #links{
    list-style: none;
    display: inline-block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    margin: 0;
    padding: 0;
  }

  #links li{
    display: inline-block;
    margin: 0;
    padding: 0;
    border: 0;
    height: 20px;
  }

  #links li a{
    margin: 0;
    padding: 0;
    height: 0;
    border: 0;
    text-decoration: none;
  }

  #iconln, #iconpt, #icontw, #mailto, #iconit{
    width: 20px;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
  }


  /* Preloader */

#preloader {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color: #000;
    z-index:99; 
}

#preloaderbis {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#fff; 
    z-index:99;
  }

#status {
    width:60px;
    height:60px;
    position:absolute;
    left:50%; 
    top:50%;
    background-image:url(mute.gif); 
    background-repeat:no-repeat;
    background-position:center;
    margin:-30px 0 0 -30px;
}

.spinner {
  width: 40px;
  height: 40px;

  position: relative;
  margin: 100px auto;
}

.double-bounce1 {
  width: 100%;
  height: 100%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(1.0) }
  50% { -webkit-transform: scale(0.2) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  } 50% { 
    transform: scale(0.2);
    -webkit-transform: scale(0.2);
  }
}


  /* HOME PAGE */

  h4{
    text-transform: uppercase;
    font-weight: 200;
    font-size: 35px;
    white-space: pre;
    text-align: center;
    text-shadow: -0.5px 0 white, 0 0.5px white, 0.5px 0 white, 0 -0.5px white;
    margin: 350px 0 0 0;
  }

  ul{
    list-style: none;
    display: block;
    text-align: center;
    width: auto;
    margin: 20px auto;
    padding: 0;
  }

  li{
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid black;
  }

  li a{
    color: black;
    text-decoration: none;
    font-weight: 300;
  }

    /* VIDEO BG */ 

  #poisson {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url(video.gif) no-repeat;
    background-size: cover;
  }




/* //// MEDIA QUERIES //// */

@media (orientation:portrait) {
   #clock{
    width: 70%;
  }
}

@media (orientation:portrait) and (max-height: 1300px) {
  h1, h2{
    font-size: 4vh;
  }
  h3{
    font-size: 2vh;
  }
  #video-controls{
    display: none;
  }
}

@media (orientation:landscape) {
  #clock{
    height: 70%;
  }
}

@media (orientation:landscape) and (max-width: 1000px) {
  h1, h2{
    font-size: 3vw;
  }
  h3{
    font-size: 2vw;
  }
  #video-controls{
    display: none;
  }
}