@font-face {
    font-family: 'League Gothic';
    src: url('League_Gothic-webfont.eot');
    src: url('League_Gothic-webfont.eot?') format('embedded-opentype'),
    url('League_Gothic-webfont.woff') format('woff'),
    url('League_Gothic-webfont.ttf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@keyframes fadeout {
	0%   {opacity: 1;}
	100% {opacity: 0;}
}

@-webkit-keyframes fadeout {
	0%   {opacity: 1;}
	100% {opacity: 0;}
}

body {
    background-color: #000;
    margin: 0;
    padding: 0;
    font-family: Arial;
}

#loading {
	position:absolute;
	left:50%;
    font-size: 60px;
    color: #fff;
    width: 500px;
    margin-left: -250px;
    margin-right: auto;
    margin-top: 100px;
    background-color: #111;
    padding: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    opacity: 0.9;
    border: 1px solid #ccc;
    text-align: center;
	z-index:1;
}

#loading a {
    color: #fff;
    text-shadow: 0 0 10px #fff;
    text-decoration: none;
}

#loading p{
    color: #fff;
    font-size: 18px;
}

#fft { 
    display: block;
    margin: 0 auto;
}

.sq {
	width:5px;
	height:500px;
	position:absolute;
	top:0px;
	background-color:#000;
	z-index:0;
}

#credits {
	position:absolute;
	bottom:0px;
	right:0px;
	background-color:#fff;
	padding:20px;
	font-size:16px;
	animation: fadeout 3s linear 5s 1 alternate;
	-webkit-animation: fadeout 3s linear 5s 1 alternate;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
	animation-play-state:running;
	-webkit-animation-play-state:running;
}

#credits:hover {
	animation: 0;
	-webkit-animation: 0;
}

#counters {
	position:absolute;
	left:1600px;
	top:0px;
	height:300px;
	background-color:#111;
	width:320px;
}

.cnt {
	height:50px;
	box-sizing:border-box;
	padding:10px;
	font-size:30px;
	color:#fff;
}