* { margin:0; padding:0; } /* to remove the top and left whitespace */

html, body 
{ 
	width:100%; 
	height:100%; 
} /* just to be sure these are full screen*/

canvas 
{ 
	display:block; 
	cursor: none; 
	margin: auto; 
	margin-top: 30px; 
	border: 2px solid #4C0000;
	font-family: 'Press Start 2P', cursive;
} /* To remove the scrollbars */

#tuto, #options, #credits
{
	display:none; 
	position:absolute; 
	margin-left:-115px;
	margin-top: 10px;
}

#toFullscreen
{
	position: absolute;
	top: 106px;
	left: 35px;
	width: 360px;
}
#bouton-fullscreen
{
	float: right;
}

#toNormal
{
	position: absolute;
	top: 163px;
	left: 35px;
	width: 360px;
}
#bouton-normal
{
	float: right;
}

#game
{
	display: none;
}

#game-over
{
	display:none; 
	cursor: none;
	width: 800px;
	height: 500px;
	background-color: black;
	background-image: url(../images/gameover.png); 
	margin: auto;
	margin-top: 30px; 
	border: 2px solid #4C0000;
}
#game-over img
{
	margin: auto;
}

#pause
{
	display:none; 
	cursor: none;
	width: 800px;
	height: 500px;
	background-color: black;
	background-image: url(../images/pause.png); 
	margin: auto;
	margin-top: 30px; 
	border: 2px solid #4C0000;
}

#loading
{
	display: none;
	background-color: black;
	background-image: url(../images/loading.png);
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
}