:root,
[data-theme="dark"] {
  --bg-color: #1a1d21;
  --text-color: #e0dcd4;
  --link-color: #b4c0c8;
}

body {
	background-color: var(--bg-color);
	color: var(--text-color);
	max-width: 800px;
	margin: auto;
	padding: 1em;
	line-height: 1.5;
}

a {
	color: var(--link-color);
}

/* header and footer areas */
.menu { padding: 0; }
.menu li { display: inline-block; }
.article-meta, .menu a {
	text-decoration: none;
	background: #1a1d21;
	padding: 5px;
	border-radius: 5px;
}
.menu, .article-meta, footer { text-align: center; }
.title {
	font-size: 1.1em;
	color: #b8c4b8;
}
.date {
	color: #e0dcd4;
}
footer a { text-decoration: none; }
hr {
	border-style: dashed;
	color: #e0dcd4;
}

/* code */
pre {
	border: 1px solid #515761;
	box-shadow: 5px 5px 5px #515761;
	padding: 1em;
	overflow-x: auto;
}
code { background: #282c34; }
pre code { background: none; }

/* misc elements */
img, iframe, video { max-width: 100%; }
main { hyphens: auto; }
blockquote {
	background: #282c34;
	border-left: 5px solid #515761;
	padding: 3px 1em 3px;
}

table {
	background: #282c34
	margin: auto;
	border-top: 1px solid #515761;
	border-bottom: 1px solid #515761;
}
table thead th { border-bottom: 1px solid #515761; }
thead, tfoot, tr:nth-child(even) { background: #282c34; }
th, td { padding: 5px; }

