body {
	background-color: black;
	color: #ffffff;
	font-family: 'Major Mono Display', monospace;
	height: 100vh;
	margin: 0;
}

.hidden {
	display: none !important;
}

h1 {
	font-size: 2.5em;
	margin-bottom: 20px;
	color: #ffffff;
	text-align: center;
}

h2 {
	text-align: center;
	font-size: 2em;
}

select {
	font-size: 1.9em;
	color: #ffffff;
	font-family: 'Major Mono Display', monospace;
	background-color: black;
	border: none;
	margin: 0 auto;
	width: fit-content;
	text-align: center;
	display: block;
}

select:focus {
	outline: 0;
}

option {
	width: 100%;
}

#game-art {
	width: 320px;
	margin: 30px auto;
	display: block;
}

.boards {
	scroll-snap-type: x mandatory;
	display: flex;
	-webkit-overflow-scrolling: touch;
	overflow-x: scroll;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.boards::-webkit-scrollbar {
	display: none;
}

section {
	min-width: 100vw;
	scroll-snap-align: start;
	position: relative;
	margin-bottom: 30px;
}

.high-score-table {
	margin: 0 auto;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}

.high-score-table td {
	padding: 10px 30px;
	font-size: 1.8em;
}

.high-score-table td:first-child,
.high-score-table td:last-child {
	text-align: right;
}

.pagination {
	width: 100%;
	height: fit-content;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	margin-top: 30px;
	margin-bottom: 40px;
}

.dot {
	width: 20px;
	height: 5px;
	margin: 4px;
	border: 1.5px solid white;
	border-radius: 2px;
	transition: 500ms ease;
}

.dot.selected {
	background-color: white;
}

button {
	border: none;
	outline: none;
	margin: 0;
	padding: 0;
	background-color: transparent;
	color: white;
	cursor: pointer;
}

.nav-button {
	position: absolute;
	font-size: 3em;
	min-height: 50%;
}

.nav-button#prev {
	left: 80px;
}

.nav-button#next {
	right: 80px;
}

@media only screen and (max-width: 700px) {

	h1 {
		font-size: 1.5em;
		margin-bottom: 20px;
	}

	h2 {
		font-size: 1.1em;
	}

	select {
		font-size: 1em;
	}

	.high-score-table td {
		padding: 10px 30px;
		font-size: 1em;
	}
}

@media only screen and (-webkit-min-device-pixel-ratio: 3) and (orientation: portrait) and (pointer: coarse),
only screen and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) and (pointer: coarse),
only screen and (-webkit-min-device-pixel-ratio: 1) and (orientation: portrait) and (pointer: coarse) {
	h1 {
		font-size: 4em;
		margin-bottom: 20px;
		margin-top: 100px;
	}

	h2 {
		font-size: 3.5em;
		margin-bottom: 80px;
	}

	#game-art {
		width: 600px;
	}

	select {
		font-size: 3.1em;
		padding: 30px;
	}

	.high-score-table td {
		padding: 10px 30px;
		font-size: 3.2em;
	}
}