html,
body {
	background-image: url("../TemplateData/background.gif");
	background-position: center; /* Center the image */
	background-repeat: no-repeat; /* Do not repeat the image */
	background-size: cover; /* Resize the background image to cover the entire container */
	width: 100%;
	height: 100%;
	overflow: visible;
	padding: 0;
	margin: 0;
}

div#gameContainer {
	background: transparent !important;
	position: absolute;
}

div#gameContainer canvas {
	position: absolute;
}

div#gameContainer[data-pixelated='true'] canvas {
	image-rendering: optimizeSpeed;
	image-rendering: -webkit-crisp-edges;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: optimize-contrast;
	image-rendering: pixelated;
	-ms-interpolation-mode: nearest-neighbor;
}
.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.connect{            
	background-image: url("../TemplateData/connect.gif");
	background-size: cover;
	width: 312.5px;
	height: 155px;
	font-size: 2rem;
}
.instruction{            
	width: 600px;
	height: 1050px;
}
@media (max-width: 600px) {
	.instruction{      
		width: 400px;
		height: 750px;
	}
}