html,body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: url('../assets/sprites/backgroundCover.jpg');
	-webkit-background: url('../assets/sprites/backgroundCover.jpg');
	margin: 0;
	background-repeat:no-repeat;
	-webkit-background-repeat:no-repeat;
	background-position:center;
	-webkit-background-position:center;
	background-size:cover;
	-webkit-background-size:cover;

	-webkit-touch-callout: none !important;                /* prevent callout to copy image, etc when tap to hold */
	-webkit-text-size-adjust: none !important;             /* prevent webkit from resizing text to fit */
	-webkit-user-select: none !important;                  /* prevent copy paste, to allow, change 'none' to 'text' */
}

#phaser-game {
	position: relative;
	z-index: 10;
	width: 100%;
	height: 100%;
	margin: auto;
}
	
:fullscreen, ::backdrop {
	background: url('../assets/sprites/backgroundCover.jpg');
	-webkit-background: url('../assets/sprites/backgroundCover.jpg');
	background-repeat:no-repeat;
	-webkit-background-repeat:no-repeat;
	background-position:center;
	-webkit-background-position:center;
	background-size:cover;
	-webkit-background-size:cover;
}

#wrongRotation {
	display: none;
	-webkit-display: none;
	z-index:999;
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 1);
}

:fullscreen,#wrongRotation img {
	z-index:999;
	display: block;
	-webkit-display: block;
	-ms-display: block;
	width: 30%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#menu {
	position: fixed;
}

@font-face {
	font-family: 'gameFont';
	src: url('../assets/fnt/Asimov.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}





