:root {
	--bg: #38d9a9;
	--fg: #343a40;
	font-size: 18px;
}
body {
	background-color: var(--bg);
	color: var(--fg);
	font-family: system-ui, sans-serif;
	font-size: 1rem;
	line-height: 1.5rem;
	margin: 0;
	overflow: hidden;
	padding: 0;
	text-align: left;
}
div#grid {
	display: grid;
	height: calc(100vh - 6rem);
	justify-content: center;
	margin: 0;
	overflow: auto;
	padding: 3rem;
	place-items: center;
	scrollbar-width: none;
	width: calc(100vw - 6rem);
	-ms-overflow-style: none;
}
div#grid::-webkit-scrollbar {
	display: none;
}
a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}
a:hover {
	text-decoration: none;
}
svg {
	height: auto;
	vertical-align: middle;
	width: 4rem;
}
@media (prefers-color-scheme: dark) {
	:root {
		--bg: #212529;
		--fg: #20c997;
	}
}
