@font-face {
	font-family: arcade;
	src: url('fonts/arcadeclassic.ttf');
}

html {
	height: 100%;
}

body {
	height: 100%;

	margin: 0;
	padding: 0;

	overflow: hidden;
}

div#game {
	width: 100%;
	height: 100%;
}

div#game-play-area {
	background-color: rgb(127,255,255);
	
	position: relative;
	margin: 0 auto;

    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
}

div#player {
	background-color: #76ff03;

	position: absolute;
}

div.enemy {
	position: absolute;
}

div.tony {
	background-color: red;
	border-radius: 50%;
}

div.speedy {
	background-color: rgba(255,127,0,0.5);
	border-radius: 25%;
}

div.blinky {
	background-color: yellow;
}

p.game {
	color: white;
	font-family: arcade;

	margin: 0;

	cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

p#scoreboard {
	color: black;
	text-align: right;
	letter-spacing: 1px;

	padding-right: 5px;
}

p#levelboard {
	text-align: center;
	font-size: 32px;
	letter-spacing: 3px;

	padding-top: 50%;
}

p#descriptionboard {
	text-align: center;
	font-size: 24px;
	letter-spacing: 2px;

	padding-top: 10%;
}