html,body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #000000;
	overflow: hidden;

	-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: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
	
:fullscreen, ::backdrop {
	background-color: #000000 ;
}
	
#turn{
	z-index:999;
	width:100%;
	height:100%;
	position:fixed;
	top:0px;
	left:0px;
	background-color:black;
	background-image:url('../assets/sprites/playportrait.png');
	-webkit-background-image:url('../assets/sprites/playportrait.png');
	-ms-background-image:url('../assets/sprites/playportrait.png');
	-moz-background-image:url('../assets/sprites/playportrait.png');
	background-size : 160px 160px;
	-webkit-background-size : 160px 160px;
	-ms-background-size : 160px 160px;
	-moz-background-size : 160px 160px;
	background-repeat:no-repeat;
	-webkit-background-repeat:no-repeat;
	-ms-background-repeat:no-repeat;
	-moz-background-repeat:no-repeat;
	background-position: center center;
	-webkit-background-position: center center;
	-ms-background-position: center center;
	-moz-background-position: center center;
	touch-action: none;
	
	display:none;
}

@font-face {
    font-family: 'gameFont';
    src: url('../assets/fnt/Zyzol.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}





