* {
	margin:0px;
	padding:0px;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	font-size: 1em;
	font-weight: normal;
}

body {
	font-family: Arial;
	background-color: white;
	overflow-x: hidden;
}

html,body {
	width: 100%;
	height: 100vh;
}

p {
	font-size: 18px; 
}

.col {
	font-weight: 600; 
	font-size: 28px;
}

#game-wrapper {
	width: 100%;
	height: 100%;
	display: flex;
    justify-content: center;
}

#game-wrapper-cell {
	position: absolute;
}

#game-wrapper-canvas {
	margin: 0;
	position: relative;
}

canvas {
	width: 100%;
	height: 100%;
	z-index: 1;
	
    /*image-rendering: optimizeSpeed;*/
    /*image-rendering: -moz-crisp-edges;*/
    image-rendering: -webkit-optimize-contrast;
    /*image-rendering: -o-crisp-edges;*/
    image-rendering: optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
}