body {
	/*Remove any automatic margins*/
	margin: 0;
	background-color: rgb(30, 30, 30);

	/*Disable touch highlights and auto-scaling*/
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-text-size-adjust: none;
	-webkit-user-select: none;
}
/*Settings for game container*/
#game {
	position: absolute;

	/*For screens bigger than iPad*/
	left: 50%;
	margin-left: -512px;
	top: 50%;
	margin-top: -384px;

	width: 1024px;
	height: 748px;
	/*Font and color temporary*/
	font-family: Roboto;
	color: rgb(77, 58, 28);
	background-color: rgb(240, 235, 213);
}

/*Settings for individual screens*/
/*All screens hidden by default*/
#game .screen {
	position: absolute;
	width: 100%;
	height: 100%;
	display: none;
	z-index: 10;
}
/*Active class to display current screen*/
#game .screen.active {
	display: block;
}
#splash-screen {
	text-align: center;
}
#splash-screen .continue {
	cursor: pointer;
	font-size: 70px;
}
#install-screen {
	text-align: center;
}
#main-menu {
	background-image: url('../images/main-menu.jpg');
}