/* Voronoi cell background */
html {
	background-color: #1a1a1a;
	background-image: url("/assets/img/voronoi.svg");
	background-repeat: repeat;
	background-position: center top;
}

/* Dark theme base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
	color: #d7d7d7;
	font-family: sans-serif;
	line-height: 1.7;
}
a { color: #8ab4f8; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Article layout */
article {
	max-width: 40rem;
	min-width: 40rem;
	margin: 0 auto;
	padding: 3rem 2rem;
	box-sizing: border-box;
}
h1 {
	font-size: 1.8rem;
	margin-bottom: 0.3rem;
	color: #e8e8e8;
}
.meta {
	color: #808080;
	font-size: 0.9rem;
	margin-bottom: 2.5rem;
}
h2 {
	font-size: 1.3rem;
	margin-top: 2.5rem;
	margin-bottom: 0.8rem;
	color: #c0c0c0;
}
p { margin-bottom: 1.2rem; }
code {
	background: #2a2a2a;
	padding: 0.15em 0.4em;
	border-radius: 3px;
	font-size: 0.9em;
}
pre {
	background: #2a2a2a;
	padding: 1rem;
	border-radius: 5px;
	overflow-x: auto;
	margin-bottom: 1.2rem;
}
pre code {
	background: none;
	padding: 0;
}
.back {
	display: inline-block;
	margin-bottom: 2rem;
	color: #606060;
	font-size: 0.8rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}
.back::before {
	content: "‹";
	display: inline-block;
	margin-right: 0.4em;
	font-size: 1.1em;
	transform: translateY(-0.03em);
}
