html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
} 

/* modified http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
  line-height: 1.5;
  padding: 1rem;
  max-width: 40rem;
  margin: 0 auto;
  font-family: Verdana, Geneva, sans-serif;
}
ol, ul {
	list-style: inside;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
} 

body {
  background-color: #0d2b45;
  color: #ffecd6;
}

a {
  text-decoration: none;
  color: #ffaa5e;
}

a:hover {
  text-decoration: underline;
}

header {
  margin-bottom: 2rem;
}

/* Nav active state */
body.home nav a.home,
body.devlog nav a.devlog {
  text-decoration: underline;
}

nav > a {
  margin-right: 0.5rem;
}

h1 { font-size: 2rem; }
h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
h3 { font-size: 1.35rem;}

p { margin-bottom: 1.5rem; }
li { margin-bottom: 0.25rem; }

figure { 
  margin-bottom: 1rem;
  text-align: center;
}

img {
  max-width: 100%;
}

