body {
  margin: 0px auto;
  max-width: 682px;
  line-height: 1.6;
  color: #333;
  padding: 0 10px;
  /*
   * Consolas: Windows, Mac
   * Menlo: Mac, iOS
   * Deja Vu Sans Mono: Linux
   * Noto Mono: Linux, Android
   */
  font-family: Consolas, Menlo, "Noto Mono", "DejaVu Sans Mono", monospace;
  font-size: 14px;
}

::-moz-selection {
  background-color: #333;
  color: snow;
}

::selection {
  background-color: #333;
  color: snow;
}

body > header {
  margin: 1em 0 5em 0;
  font-size: larger;
  letter-spacing: -0.04em;
}

h1, h2, h3, h4, h5 {
  line-height: 1.2;
  /*
   * Trebuchet MS: Mac, Windows, iOS
   * Cantarell: Linux
   * Noto Sans: Linux, Android
   */
  font-family: "Trebuchet MS", "Noto Sans", "Cantarell", "Helvetica Neue", sans-serif;
  font-weight: 600;
}
h1 {
  font-size: 1.75em;
}
h2 {
  font-size: 1.5em;
}
h3 {
  font-size: 1.25em;
}
h4 {
  font-size: 1.1em;
}

article {
  margin-bottom: 4em;
}
article h1 {
  text-transform: uppercase;
  font-weight: normal;
  margin-bottom: 0.4em;
}

time {
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1em;
  display: block;
  color: #666;
}

pre,
code {
  font-family: Consolas, Menlo, "Noto Mono", "DejaVu Sans Mono", monospace;
}
pre {
  white-space: pre-wrap;
  border-left: 3px solid #ddd;
  margin: 2em 0;
  padding: 0.5em 0 0.5em 1em;
}
p code,
li code {
  color: #222;
  font-weight: bolder;
}

a {
  color: #85144b;
  text-decoration: none;
  border-bottom: 2px solid;
}
a:visited {
}
a:hover {
  color: #001f3f;
}
a:active {
}
a[href$='.png'], a[href$='.jpg'], sup a, .footnote-return {
  border: none;
}

img, canvas, iframe, video, svg, select, textarea {
  max-width: 100%;
}
figure {
  margin: 0 0 1.5em;
}
figcaption h4 {
  margin-top: 0.25em;
}
blockquote {
  font-style: italic;
  margin: 0;
  padding: 0 1em 0;
  border-left: 2px solid #7FDBFF;
}
hr {
  border: none;
  border-top: 1px solid #ddd;
  color: #ddd;
  overflow: visible;
  margin: 3em 0 1em 0;
  padding: 0;
  text-align: center;
}
hr:after {
  content: "§"; /* pronounced "Section sign" */
  display: inline-block;
  font-size: 1.5em;
  position: relative;
  padding: 0 0.25em;
  top: -0.8em;
  background-color: #fff;
}

.pagination {
  display: flex;
}
.pagination > div {
  flex: 1 0 33%;
}
.pagination-prev {
}
.pagination-page {
  text-align: center;
}
.pagination-next {
  text-align: right;
}
.pagination,
.post-navigation {
  line-height: 2em;
}
.pagination:after {
  content: '.';
  visibility: hidden;
}

.chevron {
  font-size: 2em;
  color: inherit;
  border: none;
  vertical-align: bottom;
}

.continue-reading:after {
  content: '…';
  font-family: sans-serif;
}

.screenshot img {
  border: 1px solid #666;
}

.pull-left {
  float: left;
}
.pull-right {
  float: right;
}

.socials {
  margin-top: 2em;
}
.social-icon {
  margin: 0 0.5em;
}
.no-border,
.no-border a {
  border: none;
}

.subtitle {
  font-style: italic;
  margin-top: 0;
  color: #444;
}

.center-media {
  display: block;
  margin: 0 auto;
}

body > footer {
  text-align: center;
  clear: both;
  margin: 5em 0 2em;
}

#tags {
  margin-top: 2em;
  list-style: none;
  padding: 0;
}

td, th {
  padding: 0.5em 0.25em;
}

/* Zebra striping */
tr:nth-of-type(odd) { 
  background: #eee; 
}
