html, body {
    margin: 0;
    padding: 0;
    overflow: hidden; /* hide scrollbars */
    background-color: #000000;
    font-family: monospace;
}

canvas {
    display: block;
}


/* styling of the p5 loading menu - text and background */
#p5_loading {
	background-color: #000000;
	color: #00ff00;
	font-family: monospace;
	font-size: 1.0vmin; /* 1.5vmin */
	text-align: center;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* separately stying this part of the text so we can animate it */
#booting_text {
	color: #00ff00;
	font-family: monospace;
	font-size: 1.5vmin;
	text-align: center;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -25%);
}

/* defining animation parameters for the "booting" text */
.bootingclass {
	animation: blinker 1.5s steps(1,end) infinite;
  }
  
  @keyframes blinker {
	50% {
	  opacity: 0;
	}
  }