body {
	margin: 0;
	padding: 0;
	font-weight: normal;
	background:#101010;
	color:white;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif New, monospace;
	cursor:pointer;
}

.main {
	width:100%;
	height:100%;
}

#mvid {
	z-index: 10;
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%; 
	min-height: 100%;
}

#under {
	font-size:2.5em;
	display: none;
	z-index:20;
	white-space: nowrap;
	top:90%;
	letter-spacing:3px;
   -webkit-text-stroke: 1px rgba(0,0,0,.1);
   color: white;
   text-shadow: 0px 0px 3px #000,
   0px 0px 26px #000;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   font-weight:500;
}

/* preloader */

.c {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bl {
  animation: 0.2s blink step-end infinite;
}

@keyframes "blink" {
  from, to {
    color: transparent;
  }
  60% {
    color: white;
  }
}

@-webkit-keyframes "blink" {
  from, to {
    color: transparent;
  }
  60% {
    color: white;
  }
}