:root {
	--dark:   #382b26;
	--light:  #b8c2b9;
	--accent: #c0b28a;
}

html {
	font-family: "Dogica Pixel", "Palatino Linotype", "Palatino",
		"URW Palladio L", "TeX Gyre Pagella", "Linux Libertine",
		"Times New Roman", Times, Georgia, serif;
}

body {
	font-size: 1.75rem;
	margin: auto;
	padding: 1rem;
	line-height: 2.4rem;
	max-width: 35em;
	color: var(--light);
	letter-spacing: 0.01em;
	word-spacing: 0.02em;
	-webkit-font-smoothing: antialiased;
	position: relative;

	background-color: var(--dark);
	background-image: radial-gradient(
		circle at 1px 1px,
		rgba(184, 194, 185, 0.10) 1px,
		transparent 1px
	);
	background-size: 4px 4px;
}

p {
	text-align: left;
	hyphens: auto;
}

nav {
	margin-bottom: 1rem;
	margin-top: 0.5rem;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
	overflow-wrap: break-word;
}

h1 { font-size: 1.8em; }
h2 { font-size: 1.5em; }
h3 { font-size: 1.2em; }
h4 { font-size: 1.0em; }
h5 { font-size: 0.9em; }
h6 { font-size: 0.85em; }

img, video {
	height: auto;
	max-width: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

img, video, canvas {
	image-rendering: crisp-edges; /* Safari fallback */
	image-rendering: pixelated;
}

ul {
	padding-left: 1.4em;
	margin-top: 0;
	margin-bottom: 2.5rem;
}

li {
	margin-bottom: 0.4em;
}

a {
	color: inherit;
	transition: background 0.6s, color 0.6s;
	text-decoration: none;
	font-style: italic;
}

a:hover {
	background: var(--light);
	color: var(--dark);
}

footer {
	font-size: 1.3rem;
}

.footer-sitemap {
	display: flex;
	justify-content: space-between;
}

.footer-sitemap h3 {
	font-size: 1.4rem;
}

.footer-sitemap ul {
	list-style: none;
	margin-left: -1.2rem;
	margin-top: -1rem;
}

footer > p {
	text-align: center;
}

code {
	font-family: "Courier New", "Liberation Mono", "Cousine",
		"Nimbus Mono L", "FreeMono", monospace;
	padding: 1rem;
	border-left: 4px solid var(--accent);
	font-size: 0.9rem;
	letter-spacing: -0.02em;
	line-height: 1.4;
}
