html {
	width: 100%;
	height: 100%;
}

body {
	display: flex;
	font-family: Consolas, monospace;
	color: white;
  background-color: #222222;
	height: 100%;
	padding: 0;
	margin: 0;
}

.pointer {
	cursor: pointer;
}

main {
  width: 1024px;
  height: 768px;
	overflow-x: hidden;
	overflow-y: hidden;
  position: relative;
  top: 50%;
  left: 50%;
	transform: translate(-50%, -50%);
}

header {
	width: 100%;
	position: absolute;
	margin: 0;
	top: 50%;
	transform: translateY(-50%);
}

header h1 {
	text-transform: uppercase;
	text-align: center;
}

canvas {
	width: 100%;
	height: 100%;
	aspect-ratio: 4/3;
	background-color: #232323;
}

@media only screen and (max-width: 1024px) {
	main {
		width: 100%;
	}
}

@media only screen and (max-height: 768px) {
	main {
		height: 100%;
	}
}
