*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	position: relative;
	border: none;
	outline: none;
}

html,
body {
	height: 100svh;
	width: 100svw;
}

body {
	display: grid;
	place-content: center;
	background-color: #000;
}

#renderer {
	width: 100svw;
	height: 100svh;
	image-rendering: pixelated;
}

menu {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: absolute;
	gap: 10px;
	width: 100svw;
	margin-inline: auto;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	margin-block: 10px;
}

#top {
	top: 0;
}
#bottom {
	bottom: 0;
}

menu input {
	appearance: none;
	-webkit-appearance: none;
	height: 4px;
	border-radius: 5px;
	background: #777;
	outline: none;
	opacity: 0.7;
	-webkit-transition: 0.2s;
	transition: opacity 0.2s;
	width: 400px;
}

menu input:hover {
	opacity: 1;
	cursor: pointer;
}

menu button {
	padding: 5px 10px;
	background: #333;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	-webkit-transition: 0.2s;
	transition: all 0.2s;
}

menu button:hover {
	opacity: 0.8;
}

menu button.active {
	background: #070;
}

#counter {
	font-size: 18px;
	color: #fff;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
