@font-face {
    font-family: font;
    src: url(font.ttf);
}
* {
	font-family: font;
	text-align: center;
	color:white;
	margin:0;
	padding:0;
}
a{
	color: #0CBACF;
	-webkit-transition: 0.5s ease;  
	-moz-transition: 0.5s ease;  
	-o-transition: 0.5s ease;  
	transition: 0.5s ease;
}
a:hover{
	color: #0EDBF2;
	-webkit-transition: 0.2s ease;  
	-moz-transition: 0.2s ease;  
	-o-transition: 0.2s ease;  
	transition: 0.2s ease;
}
html{
	background-color:#666666;
	height:100%;
}
body{
	height:100%;
	width:960px;
	margin:0 auto 0 auto;
	min-height:600px;
	position:relative;
}
p{
	margin:0 0 0.7em;
}
#center{
	position:absolute;
	top:40%;
	margin-top:-255px;
}
