:root {
	background-color: rgb(0, 0, 0);
	color: white;
}

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

h1 {
	font-family: "Roboto", sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 35px;
	margin: 0;
	margin-bottom: -8px;
	
	text-align: center;
}

.pixel-sprite {
	image-rendering: pixelated;
}

.center-everything {
	width: 100%;
}

.panel {
	background-color: bisque;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 275px;
}

.horizontal-bar {
	background-color: rgb(96, 117, 156);
	height: 12px;
	margin-top: 8px;
	margin-bottom: 8px;
}

.bottom-right-static {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 1000;
	pointer-events: none;
}

.spin {
	animation: spin 6s linear infinite;
	transform-origin: center;
}

@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}