body {
	background-color: black;
	color: white;
	font-family: "Press Start 2P", system-ui;
}

table,
td {
	border: 1px solid white;
	text-align: center;
}

td {
	padding: 5px;
}

#container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

#instructions {
	display: flex;
	flex-direction: row;
	align-items: left;
}

#instructions>ul {
	padding-right: 10%
}

#screen-container {
	width: 790px;
	height: 320px;
	position: relative;
}

#loading {
	position: absolute;
	top: 50%;
	left: 32%;
	width: 100%;
	height: 40px;
	z-index: -1;
}

#loading span {
	display: inline-block;
	animation: wave 2s ease-in-out infinite;
}

#loading span:nth-child(1) {
	animation-delay: 0s;
}

#loading span:nth-child(2) {
	animation-delay: 0.2s;
}

#loading span:nth-child(3) {
	animation-delay: 0.4s;
}

#loading span:nth-child(4) {
	animation-delay: 0.6s;
}

#loading span:nth-child(5) {
	animation-delay: 0.7s;
}

#loading span:nth-child(6) {
	animation-delay: 0.8s;
}

#loading span:nth-child(7) {
	animation-delay: 0.9s;
}

#loading span:nth-child(8) {
	animation-delay: 1.0s;
}

#loading span:nth-child(9) {
	animation-delay: 1.1s;
}

#loading span:nth-child(10) {
	animation-delay: 1.2s;
}

@keyframes wave {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}
}
