/* 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, img, ins, kbd, q, s, samp,
small, strike, sub, 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;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  font-family: "Courier New", Courier, Arial, Helvetica, sans-serif;
  background-color: aliceblue;
}

h1 {
  font-size: 2rem;
  margin-top: 20px;
}

h2 {
  margin-top: 0.5rem;
}

ul {
  list-style: none;
}
ul.posts {
  margin-top: 40px;
}
ul.posts li {
  margin-bottom: 30px;
  font-size: 1.5rem;
}
ul.posts li a {
  color: black;
  text-decoration: none;
}
ul.posts li a:visited {
  color: black;
}
ul.posts li a span.post-title-text {
  text-decoration: underline;
}

strong {
  font-weight: bold;
}

.post-body {
  margin: 0 auto;
  width: 50%;
}
.post-body .post-content {
  margin-top: 40px;
  margin-bottom: 120px;
  text-align: justify;
}
.post-body .post-content p {
  line-height: 1.5rem;
  margin-top: 2rem;
}
.post-body .post-content p.post-image-caption {
  margin: 0;
  text-align: center;
}
.post-body .post-content img.post-image {
  width: 100%;
  border-radius: 5px;
}
.post-body .post-content blockquote {
  margin-left: 2rem;
  font-style: italic;
}
.post-body .post-content ol {
  list-style: decimal;
  margin-left: 40px;
}
.post-body .post-content ol li {
  margin-bottom: 1rem;
  line-height: 1.5rem;
}

@media (max-width: 1250px) {
  .post-body {
    width: 90%;
  }
  .post-body .post-content {
    text-align: left;
  }
}