@media (max-width: 767.99999px) {
  .content {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991.99999px) {
  .content {
    width: 80%;
  }
}
@media (min-width: 992px) {
  .content {
    width: 66%;
  }
}
html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  background-image: url("/static/img/body_bg.gif");
  background-repeat: repeat;
  font-family: Helvetica, Arial, sans-serif;
}
body a {
  text-decoration: none;
}
body .header {
  padding: 1rem;
  font-size: 1rem;
  background: #386663;
  color: white;
  display: flex;
}
body .header div.name {
  text-align: left;
  padding: 0.5rem 1rem 0.5rem 2rem;
  flex: 1;
}
body .header div.links {
  text-align: right;
  padding: 0 2rem 0 1rem;
  text-transform: uppercase;
  flex: 1;
}
body .header div.link {
  display: inline-block;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}
body .header div.link a {
  text-decoration: none;
  color: white;
}
body .header div.link:hover {
  background: #66383b;
}

.code {
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
}

.content {
  margin: 2rem auto 2rem auto;
  border-radius: 1rem;
  padding: 2rem 4rem;
}

.content.main {
  min-height: 80vh;
  background-color: #f8f8f8;
}

.content h1, section h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #66383b;
}
.content h1.space-above, section h1.space-above {
  margin-top: 2em;
}
.content p, section p {
  font-size: 1.25rem;
  padding-bottom: 1rem;
}

a.button {
  display: inline-block;
  background-color: #aa8b8c;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5em;
  text-decoration: none;
}

a.button:hover {
  background: #b3c4c3;
}

.author, .published {
  color: #222222;
  font-family: "Times New Roman", Times, serif;
}

.author {
  font-size: 1rem;
}

.published {
  font-style: italic;
  font-size: 0.9rem;
}

.footer {
  background: #386663;
}
.footer p {
  text-align: center;
  color: white;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.footer a {
  color: white;
}
.footer a:hover {
  color: #bba2a2;
}