/* CSS Reset */
html, body, div, span, object, h1, h2, h3, h4, h5, h6, p, a, abbr, acronym, em, img, ol, ul, li {
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

html {
  box-sizing: border-box;
  text-align: justify;
}

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

/* Variables */
html {
  font-family: georgia, serif;
  color: #333;
  background: #FFFFFC;
  background: -webkit-linear-gradient(top, #EEE 0%, #FFF 10%, #FFF 90%, #EEE 100%);
  background: linear-gradient(to bottom, #EEE 0%, #FFF 10%, #FFF 90%, #EEE 100%);
  background-attachment: fixed;
  height: 100%;
  width: 100%;
  z-index: -10;
}

#fixed-bar-top {
  position: fixed;
  top: 0%;
  width: 100%;
  height: 4em;
  z-index: 999;
  display: flex;
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10em;
}

h2 {
  font-family: inherit;
  font-size: 1.7em;
  font-variant: small-caps;
  text-align: center;
  width: 80%;
  margin: 0 auto 0;
  border-top: 1px solid #777;
  margin-top: 1em;
  padding: 0.8em 0 1em 0;
}

h3 {
  font-size: 1.3em;
  margin: 0.5em 0;
  padding: 0.5em 0 1em 0;
  text-align: center;
}

h4 {
  font-size: 1.1em;
  margin: 0.1em 0;
  padding: 0.2em 0 0.2em 0;
  font-weight: bold;
}

blockquote {
  width: 100%;
  margin: 0.6em auto;
  padding-left: 0.2em;
  font-size: 1.1em;
  font-style: italic;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
  blockquote > p {
    padding-left: 6px;
    border-left: 4px solid rgba(76, 76, 76, 0.9);
    margin: auto;
  }

ul, ol {
  list-style-position: inside;
  margin: 1em 0 1em 2em;
  text-align: left;
}

li {
  margin-bottom: 0.7em;
}

em {
  font-weight: bold;
  font-style: italic;
}

img {
  margin: auto;
}

a, a:visited {
  color: #EB005B;
  text-decoration: none;
  -webkit-transition: color 0.1s;
          transition: color 0.1s;
}

a:hover, a:visited:hover, a:hover:hover {
  color: #FFFFFC;
  background-color: #EB005B;
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  height: 10em;
  width: 100%;
  background: #FFFFFC;
  z-index: 999;
}

footer {
  font-size: 0.8em;
  min-height: 200px;
  padding: 1em;
  color: #888;
  text-align: center;
  clear: both;
}

td, th {
    border: 1px solid #777;
    padding: 0.5rem;
    text-align: center;
}

table {
    border-collapse: collapse;
}

tbody tr:nth-child(odd) {
    background: #eee;
}
caption {
    font-size: 0.8rem;
}

.photo {
  border-radius: 25px;
  border: 1px solid black;
}

.blog {
  display: table;
  width: 100%;
  height: 100%;
  margin: auto;
}

.information {
  font-family: "JetBrains Mono";
}

.index-title {
  font-weight: 400;
  font-size: 3em;
}

.title {
  font-family: "Quicksand", helvetica, sans-serif;
  font-weight: 400;
  font-size: 3em;
  text-transform: capitalize;
}

hr.section-ender {
    overflow: visible;
    padding: 0;
    border: none;
    border-top: thick double #333;
    margin-top: 0.9em;
    color: #333;
    text-align: center;
    z-index: -8;
}

hr.section-ender:after {
    content: "§";
    display: inline-block;
    position: relative;
    top: -0.7em;
    font-size: 1.6em;
    padding: 0 0.32em;
    background: #fcfcfb;
    z-index: 0;
}

hr.header-ender {
    overflow: visible; /* For IE */
    padding: 0;
    border: none;
    border-top: thick double #333;
    margin-top: 0.9em;
    color: #333;
    text-align: center;
}

hr.header-ender:after {
    content: "⁂";
    display: inline-block;
    position: relative;
    top: -0.7em;
    font-size: 1.6em;
    padding: 0 0.32em;
    background: #fcfcfb;
}

hr.eot {
    overflow: visible; /* For IE */
    padding: 0;
    border: none;
    border-top: medium double #333;
    margin-top: 1.9em;
    color: #333;
    text-align: center;
}

hr.eot:after {
    content: "␄";
    display: inline-block;
    position: relative;
    top: -0.7em;
    font-size: 2.6em;
    padding: 0 0.32em;
    background: #fcfffb;
}

.byline {
  font-family: helvetica, sans-serif;
  font-style: italic;
  font-weight: 100;
  font-size: 1em;
}

.wrapper {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.masthead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: space-around;
  -webkit-align-items: space-around;
      -ms-flex-align: space-around;
          align-items: space-around;
  width: 100%;
  min-height: 64px;
  text-align: center;
  margin: auto;
}

.post-image {
  height: auto;
  width: 400px;
  max-width: 400px;
}

.metadata {
  text-align: center;
}

.date {
  color: rgba(128, 128, 128, 0.5);
  font-size: 0.9em;
  font-style: italic;
  line-height: 2em;
  font-family: helvetica, sans-serif;
}

.categories, .tags {
  color: rgba(128, 128, 128, 0.5);
  font-size: 0.9em;
  font-style: italic;
  line-height: 2em;
  font-family: helvetica, sans-serif;
  width: 100%;
  max-width: 500px;
  display: block;
  margin: auto;
}

a.tag, a.category {
  padding: 0px 8px;
  margin: 2px 1px;
  border-radius: 4px;
  display: inline-block;
  color: #333;
  border: 1px solid rgba(76, 76, 76, 0.9);
  -webkit-transition: 0.3s;
          transition: 0.3s;
}

a.tag:hover, a.category:hover {
  background: #333;
  color: #FFFFFC;
  text-decoration: none;
}

.post {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  width: auto;
  min-width: 100px;
  max-width: 1080px;
  /*min-height: 100%;*/
  padding: 0px 20px;
  margin: 1em auto;
  margin-bottom: 4em;
  -webkit-transition: color 2s;
          transition: color 2s;
  font-size: 1.3em;
}

.post p {
  line-height: 1.6em;
  letter-spacing: 0.02em;
  margin: 0.5em 0 0 0;
  -webkit-hyphens: auto;
      -moz-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  word-break: break-word;
}
  .post p + p {
    margin-top: 1em;
  }
  .post ul {
    list-style-type: disc;
    text-indent: -1em;
  }
    .post ul li {
      line-height: 1.3em;
      letter-spacing: 0.05em;
      margin: 0.5em 0 0 0;
      -webkit-hyphens: auto;
         -moz-hyphens: auto;
          -ms-hyphens: auto;
              hyphens: auto;
      word-break: break-word;
    }

.post img {
  max-width: 100%;
  margin: auto;
  display: block;
}

ul.toc {
  text-align: center;
}

.toc li {
  display: inline-block;
}

.toc li:not(:last-child):after {
  content: " ⁂ ";
  padding-right: 1em;
}

.center {
  text-align: center;
  margin: auto;
}

.monochrome {
  color: #333;
}

.pager-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
  .pager-title span {
    text-align: center;
}

.pager article {
  margin-top: 2em;
}

#page {
  margin: 4em 0;
}

#theme-button {
  text-transform: uppercase;
  font-family: "Quicksand", helvetica, sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  text-align: right;
  cursor: pointer;
  -webkit-transition: opacity 0.5s, color 2s;
          transition: opacity 0.5s, color 2s;
  opacity: 0.6;
}
  #theme-button:hover {
    opacity: 1;
}

#leftarrow {
  position: fixed;
  left: 5px;
  top: calc(50% - 15px);
  text-decoration: none;
}

#rightarrow {
  position: fixed;
  right: 10px;
  top: calc(50% - 15px);
  text-decoration: none;
}

@media only screen and (max-width: 750px) {
  header {
    color: #FFFFFC;
    height: 3em;
    background: rgba(76, 76, 76, 0.9);
}

  #beacon {
    color: #FFFFFC;
    font-size: 2em;
    margin: 0;
}

  #theme-button {
    color: #FFFFFC;
    font-size: 1.5em;
    top: 0.5em;
    right: 0.2em;
    opacity: 0.5;
} }
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
  h2 {
    border-top: 3px solid #777;
}

  .page {
    min-width: none;
    max-width: none;
    width: auto;
    padding: 0 1em;
    margin: 0;
    box-sizing: border-box;
}

  .page p {
    padding-bottom: 1em;
    font-size: 1em;
    line-height: 1.8em;
}

  .post-image {
    height: auto;
    width: auto;
    max-width: 280px;
}

  .page > p:first-of-type:first-letter {
    font-size: 4em;
    line-height: 0.1em;
}}
@media only screen and (max-height: 450px) {
  .masthead {
    min-height: 64px;
}}

.ext-link img {
  width: 32px;
  height: 32px;
}

.right-sidebar {
  position: absolute;
  top: 0.75em;
  right: 0.7em;
  display: flex;
}

.right-sidebar > * {
  margin-left: 12px;
}

.comments {
    padding-top: 4em;
}

/*# sourceMappingURL=style.css.map */
