/* BASE STYLES */

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	user-select: none;
	-webkit-user-select: none;
	overflow: hidden;
}

body {
	position: fixed;
}	

.main_content {
	cursor: none;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;	
	width: 100%;
	height: 100%;
	background-color: #000000;
}

#framebuffer {
	image-rendering: -moz-crisp-edges;
	image-rendering: -webkit-crisp-edges;
	image-rendering: pixelated;
	image-rendering: crisp-edges;
	background-color: #000000;
}
