:root {
	--background-color: #111;
	--text-color: white;
}

body {
	color-scheme: dark;
	font-family: system-ui;
	margin: 2rem;
	background-color: var(--background-color);
	color: var(--text-color);
}

main {
	display: grid;
	place-items: center;
	place-content: center;
}

table {
	border-collapse: collapse;
}

td:nth-of-type(2) {
	padding: 0 1rem;
}

td:last-of-type {
	text-align: right;
}

td[colspan="3"] {
	height: 1rem;
}
