:root {
	font-size: 19px;
}
body {
	background-color: #58a27C;
	color: #212529;
	display: grid;
	font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;
	height: 100vh;
	justify-content: center;
	line-height: 1.5rem;
	margin: 0;
	overflow: hidden;
	padding: 0;
	place-items: center;
	text-align: center;
	width: 100vw;
}
a {
	color: inherit;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}
svg {
	height: auto;
	vertical-align: middle;
	width: 4rem;
}
@media (prefers-color-scheme: dark) {
	body {
		background-color: #212529;
		color: #58a27C;
	}
}
