html, body {
	margin: 0;
	padding: 0;
	/* White (not the template default #000) so the pre-paint boot window blends
	   with the white hero page instead of flashing black. The p5 sketch paints
	   its own white background (c64c[1]) once loaded, so this only affects the
	   moment before the first frame. */
	background-color: #ffffff;
}

body {
	height: 100vh !important;
  	width: 100vw !important;
  	overflow: hidden;
  	position: fixed;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

main {
	display: block;
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	height: 100% !important;
}

canvas, #app {
	display: block;
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	height: 100% !important;
	image-rendering: pixelated;
}

p {
	font-size: 12px !important;
	font-family: monospace !important;
	background-color: #000000 !important;
	border-radius: 0 !important;
	padding: 5px !important;
}