@font-face {
    font-family: 'milkywell';
    src: url('/fonts/milkywell-webfont.eot');
    src: url('/fonts/milkywell-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/milkywell-webfont.woff') format('woff'),
         url('/fonts/milkywell-webfont.ttf') format('truetype'),
         url('/fonts/milkywell-webfont.svg#milkywellregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

html, body, #wrapper {
	height: 100%;
}	

* {
	margin: 0;
	padding: 0;
}
canvas#gamescreen { margin: 0 auto; }

.spf {
	position: absolute;
	left: 10px;
	top: 10px;
	color: #666;
	font-family: Arial;
	font-size: 11px;
}
body {
	background: black;
	color: white;
}
body.paused {
	background: #666666;
}
body.paused canvas {
	opacity: 0.5;
}
.score {
	position: absolute;
	left: 10px;
	top: 30px;
	color: white;
	font-family: milkywell;
	font-weight: 400;
	font-size: 30px;
}
.header .menu {
	list-style: none;
	position: absolute;
	bottom: 0;
	right: 0;
	font-size: 14px;
	font-family: milkywell;
	white-space: nowrap;
	z-index: 10;
}
.header .menu li {
	float: left;
}
.header .menu li a {
	display: block;
	background: white;
	color: black;
	text-decoration: none;
	padding: 10px 20px;
	border-left: 1px solid black;
}

.intro {
	width: 100%;
	height: 100%;
	position: relative;
	/*background: url('../img/_intro-bg.png') center center no-repeat;
	background-size: cover;*/
	overflow: hidden;
}
.intro__keyvisual {
	position: absolute;
	top: 15%;
	bottom: 15%;
	left: 0;
	right: 0;
}
.intro__logo {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background: url('../img/intro-keyvisual.png') center center no-repeat;
	background-size: contain;
}
.intro__glow {
	position: absolute;
	left: 0;
	right: 0;
	top: 35%;
	height: 80.19%;
	width: 100%;
	background: url('../img/intro-glow.png') center center no-repeat;
	background-size: auto 100%;
	opacity: 0.7;
}
.intro__start {
	font-family: milkywell;
	font-weight: 400;
	font-size: 48px;
	color: white;
	text-align: center;
	text-transform: uppercase;
	position: absolute;
	bottom: 15%;
	left: 10%;
	right: 10%;
	z-index: 10;
	transform: scale(1);
	transition: transform 0.5s ease;
}
.intro__start a {
	position: relative;
	z-index: 10;
	text-decoration: none;
	color: white;
	cursor: pointer;
}
.intro__start:hover {
	transform: scale(1.3,1.3);
}
.intro__copyright {
	color: #5b5b5b;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 13px;
	text-align: center;
	position: absolute;
	bottom: 1em;
	left: 2em;
	right: 2em;
}
.intro__pattern {
	width: 32px;
	height: 32px;
	background: url('../img/intro-pattern.png') 0 0 no-repeat;
	opacity: 0.5;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
.intro__pattern.d1 { background-position: 0 0px; }
.intro__pattern.d2 { background-position: 0 -32px; }
.intro__pattern.d3 { background-position: 0 -64px; }
.intro__pattern.d4 { background-position: 0 -96px; }
.intro__pattern.d5 { background-position: 0 -128px; }
.intro__pattern.d6 { background-position: 0 -160px; }