/* Reset */
body {
  margin: 0;
}

/* Make everything a border-box, because why not? */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* Make headers semantic, not presentational. */
h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
  margin: 0;
}

h1 {
  font-size: 200%;
}
h2 {
  font-size: 160%;
}
h3 {
  font-size: 125%;
}

a {
  color: #005098;
}
a:hover {
  color: #74aee2;
}

html {
  min-height: 100%;
}
body {
  min-height: 100%;
  font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
  line-height: 1.5;
  letter-spacing: 1px;
  color: #36454F;
  background: #FAFAFA;
}

header {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;

  font-size: 120%;
  text-align: center;
}
header h1 {
  font-size: 300%;
}
header nav {
  padding: 0.5em;
}

section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1em;
}
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1em;
}


blockquote {
  margin: 0;
  border-left: 6px solid #d3e8fb;
  padding: 0px 15px;
  font-style: italic;
}

footer {
  padding: 1em;

  text-align: right;
  font-size: 150%;
  background-color: #36454F;
}
.edit-page-link {
  text-transform: uppercase;
  color: #74aee2;
}
.edit-page-link:hover {
  color: #a2c9ec;
}

img {
  max-width: 100%;
  padding: 0 30px;
  margin: 0 auto;
  display: block;
}