
@font-face {
	font-family: 'Neuropol';
	src: url('NEUROPOL.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

body {
	overflow: hidden;
	padding: 0px;
	margin: 0px;
	background-color: black;
}

canvas {
	background-color: black;
}

.aligncenter {
	position: absolute;
	top: 0px;
	width: 100%;
	text-align: center;
	margin: auto;
}

#message {
	position: absolute;
	top: 0px;
	left: 0px;
	font-family: 'Neuropol';
	color: #fff;
	width: 100%;
	height: 100%;
	margin: auto;
	text-align: center;
	font-size: 45px;
	overflow-y: hidden;
	text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
	line-height: 2em;
	z-index: 21;
}

.normal {
	font-size: 45px;
}

.big {
	font-size: 65px;
}

.bigger {
	font-size: 80px;
}

.shadow {
	color: grey;
	opacity: 0.15;
}

#message span {
	position: relative;
	top: 35%;
	transform: translateY(-50%);
}

#message .greet {
	position: absolute;
	top: 50%;
	left:45%;
	text-align: left;
}

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

.fade-in {
	opacity: 0;
	-webkit-animation-name: fade-in;
	-webkit-animation-duration: 6s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-iteration-count: 2;
	-webkit-animation-direction: alternate;
}

#fps {
	position: absolute;
	left: 0px;
	top: 0px;
	color: #f0f0f0;
}

#timer {
	position: absolute;
	left: 0px;
	top: 20px;
	color: #f0f0f0;
}

#overlays {
	position: absolute;
	bottom: 0px;
	right: 0px;
	z-index: 10;
}




