@font-face {
	font-family: 'Potta One';
	src: url('assets/pottaone-regular.ttf');
}

html, body {
	background: black;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Potta One';
	margin: 0 auto;
}

#game {
	position: fixed;
	width: 100%;
	height: 100%;
}

/*.modal { */
#game-over, #intro {
	display: none;
	z-index: 100;
	position: absolute;
	width: 500px;
	height: 300px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
}

.modal-content {
	background-color: rgba(254, 254, 254, 0.8);
	border: 1px solid #888;
	text-align: center;
	box-shadow: 5px 10px 5px #666;
}

h1.modal-content {
	color: #855;
	font-size: 50px;
}

p.modal-content {
	font-size: 24px;
	color: #333;
}

#game-over-moves {
	font-size: 36px;
	color: #855;
}

.modal-button {
	color: #eee;
	width: 100px;
	height: 40px;
	font-size: 20px;
	margin: 2em auto;
	border: 2px dashed #558;
	line-height: 30px;
	cursor: pointer;
	display: inline;
	background-color: #99f;
}

a {
	color: #bbb;
	text-decoration: none;
}

#bottom {
	height: 1px;
	display: block;
}

#sound-ctrl {
	position: absolute;
	top: 0.7em;
	left: 1em;
	z-index: 1000;
	color: #558;
	width: 70px;
	height: 70px;
	border: 2px dashed #558;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center;
}

#game-container {
	width: 920px;
	height: 400px;
	position: relative;
}