body {
	color: white;
	max-width: 50rem;
	margin: auto;
	line-height: 1.5;
	background-color: #111;
}

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

/* code */
pre {
  border: 1px solid #555;
  padding: 1em;
  overflow-x: auto;
}

code {
	background: #1e1e24;
}

pre code { background: none; }

/* misc elements */
img, iframe, video { max-width: 100%; }
main { hyphens: auto; }
blockquote {
  background: #f9f9f9;
  border-left: 5px solid #ccc;
  padding: 3px 1em 3px;
}
table {
  margin: auto;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}
table thead th { border-bottom: 1px solid #ddd; }
th, td { padding: 5px; }
thead, tfoot, tr:nth-child(even) { background: #eee; }
:link { color: #87CEFA; }
:visited { color: #88c; }
