:root {
	--text: #555;
	--bg: white;
}
@media (prefers-color-scheme: dark) {
	:root {
		--text: #eee;
		--bg: #222;
	}
}
body {
	background-color: var(--bg);
	color: var(--text);
	padding: 5%;
	margin: auto;
	max-width: 540px;
	font-family: sans-serif;
	#font-family: monospace, monospace;
}
h1 { font-weight: normal; }
h2 {
	font-weight: normal;
	font-size: 20px;
}
ul { list-style-type: "› ";}
.time, a { color: #c49977 }
.time { font-weight: bold; }
a { text-decoration: none; }
a:hover { color: #967259 }
a:active { color: #634832 }
