body {
	min-width: 100vw;
	min-height: 100vh;
}
section {
	position: relative;
	background: black;
	color: white;
	text-align: center;
	border: 1px solid white;
	white-space: pre;
	font-family: 'Courier New', Courier, monospace;
	border-bottom: none;
}
section #hotbar {
	position: absolute;
	bottom: -1px;
	left: -1px;
	width: 100%;
}
nav, footer {
	width: calc(100% - 2px);
	border: 1px solid white;
}
#throbber {
	display: flex;
	justify-content: center;
	align-items: center;
	background: black;
	position: fixed;
	top: 0;
	left: 0;
	width: calc(100% - 2px);
	height: 100%;
	border: 1px solid white;
	transition: opacity 1s;
	z-index: 9;
}
#throbber svg {
	width: 20vw;
	height: 20vw;
	fill: white;
	animation: spin 2s linear infinite;
}