#game {
	height: 100vh;
}

body {
	margin: 0px; 
	padding: 0px;
	background-color: #BBB;
}

canvas, img {
    image-rendering: optimizeSpeed;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;

    
}

#shadow {
	position: relative;
	top: 0;
	-webkit-box-shadow: inset -16px 18px 5px -8px rgba(0,0,0,0.18);
	-moz-box-shadow: inset -16px 18px 5px -8px rgba(0,0,0,0.18);
	box-shadow: inset -16px 18px 5px -8px rgba(0,0,0,0.18);
}



#gamediv {
	width: 70vh;
	margin: auto;
	margin-top: 100px;
	border: 2px inset #C3C3C3;


}
