body {
	margin: 0;
	padding: 0;

	width: 100%;
	height: 100%;
}

.center {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	gap: 10px;
	flex-direction: column;
}

* {
	font-family: monospace;
	color: white;
}

body {
	background-color: black;
}

::-webkit-scrollbar {
	background-color: black;
}

::-webkit-scrollbar-thumb {
	background-color: rgb(30, 30, 30);
}

a {
	text-decoration: underline;
	user-select: none;
}

a:hover {
	cursor: pointer;
	color: rgb(200, 200, 200);
}

a.selected {
	background-color: rgb(50, 50, 50);
}

select, input {
	background-color: rgb(30, 30, 30);
	margin: 0;
	border: none;
}

#cookie-banner {
	z-index: 999;
	background-color: black;

	border: 1px dotted lightseagreen;
	padding: 5px;
	position: fixed;

	bottom: 20px;
	left: 0;

	text-align: left;
}

.disabled {
	color: gray;
}

.disabled:hover {
	cursor: not-allowed;
}