/* Style the video: 100% width and height to cover the entire window */
#myVideo {
	width: 100vw;
	height: 100vh;
   position: fixed;
   left: 0;
   right: 0;
   top: 10;
   bottom: 0;
   z-index: -1;
}



body {
  background-color: black;
  margin: 0;
  font-family:Helvetica Neue,Helvetica,Arial, sans-serif;
  font-size:12px;
  line-height:1.428571429;
}


.more {
  animation: fadein 3s steps(3, end);
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.moreX {
  animation: fadein 4s steps(3, end);
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}



.moreX2 {
  animation: fadein 5s steps(3, end);
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


