
/* 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;
}

hr {
  width: 80%;
  margin: 1em auto;
}

:root {
  --bg: var(--base00);
  --fg: var(--base07);
  --highlight-fg: var(--base0D);
  --title-fg: var(--base08);
  --title-two-fg: var(--base09);
  --fade-fg: var(--base06);
  --highlight-bg: var(--base08);
  --light-bg: var(--base01);
  --emphasis-fg: var(--base0A);
}

html {
  box-sizing: border-box;
}

div.sourceCode {
  max-width: 100vw;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

pre.sourceCode {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100vw;
  padding: 1em;
}

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

/* Variables */
html {
  font-family: "EB Garamond", serif;
  color: var(--fg);
  background: var(--bg);
  background-attachment: fixed;
  height: 100%;
  width: 100%;
  z-index: -10;
}

html.dark {
  background: #333;
  background: -webkit-linear-gradient(
    top,
    #2a2a2a 0%,
    #333 10%,
    #333 90%,
    #2a2a2a 100%
  );
  background: linear-gradient(
    to bottom,
    #2a2a2a 0%,
    #333 10%,
    #333 90%,
    #2a2a2a 100%
  );
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  color: #ddd;
}

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;
}

h1 {
  color: var(--highlight-fg);
  font-family: "Quicksand", "helvetica neue", sans-serif;
  font-weight: bold;
  font-size: 1.7em;
}

h2 {
  color: var(--title-fg);
  font-family: "Quicksand", "helvetica neue", sans-serif;
  font-weight: bold;
  font-size: 1.5em;
  margin-top: 1em;
}

h3 {
  font-family: "helvetica neue", sans-serif;
  color: var(--title-two-fg);
  font-size: 1.4em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

blockquote {
  width: 95%;
  margin: 0.7em auto;
  text-align: left;
  padding: 0.5em;
  font-size: 1.1em;
  background: var(--light-bg);
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

blockquote > p {
  padding-left: 7px;
  border-left: 5px solid rgba(76, 76, 76, 0.9);
  margin: auto;
}

ul,
ol {
  list-style-position: inside;
}

li {
  margin-bottom: 0.7em;
}

em {
  font-weight: bold;
  font-style: italic;
  color: var(--highlight-fg);
}

strong {
  font-weight: bold;
  color: var(--emphasis-fg);
}

img {
  margin: auto;
}

a,
a:visited,
a:hover {
  color: var(--highlight-fg);
  text-decoration: none;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
}

a:hover,
a:visited:hover,
a:hover:hover {
  color: #eb0978;
  text-decoration: underline;
}

header {
  position: fixed;
  /*color: $night-white;*/
  top: 0;
  height: 4em;
  width: 100%;
}

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

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

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

.title {
  font-family: "Quicksand", "helvetica neue", sans-serif;
  font-weight: 400;
  font-size: 2em;
  text-transform: capitalize;
  max-width: 800px;
  display: block;
  margin: auto;
}

.byline {
  font-family: "EB Garamond", serif;
  font-weight: 100;
  font-size: 1.5em;
}

.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: 400px;
  padding: 2em 10px;
  text-align: center;
  margin: auto;
}

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

.metadata {
  text-align: center;
}

.date {
  color: var(--fade-fg);
  font-size: 0.9em;
  font-style: italic;
  line-height: 2em;
  font-family: "helvetica neue", sans-serif;
}

.categories,
.tags {
  color: var(--fg);
  font-size: 0.9em;
  font-style: italic;
  line-height: 2em;
  font-family: "helvetica neue", 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: var(--fg);
  border: 1px solid rgba(76, 76, 76, 0.9);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a.tag:hover,
a.category:hover {
  background: var(--highlight-bg);
  color: var(--fg);
  text-decoration: none;
}

.dark a.tag,
.dark a.category {
  color: #ddd;
}

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

.post {
  display: flex;
  flex-flow: column nowrap;
  width: auto;
  min-width: 100px;
  max-width: 900px;
  padding: 0px 0.8em;
  margin: 1.5em auto;
  transition: color 2s;
  font-size: 1.25em;
  align-items: stretch;
}

.post p {
  width: 100%;
  line-height: 1.3em;
  letter-spacing: 0.02em;
  margin: 0.5em 0 0 0;
  hyphens: auto;
  word-break: break-word;
}

.post p + p {
  margin-top: 1em;
}

.post ul {
  list-style-type: disc;
}

.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;
}

.table-of-contents {
  clear: both;
  width: 100%;
}

.table-of-contents h1 {
  font-size: 3em;
  text-align: center;
  font-family: "Quicksand", "helvetica neue", sans-serif;
}

.table-of-contents ul {
  margin: 3em 0;
  list-style: none;
}

.table-of-contents li {
  width: 100%;
}

.table-of-contents li a {
  color: var(--fg);
  font-weight: normal;
  box-sizing: border-box;
  border-top: 1px solid #444;
  display: block;
  width: 50%;
  min-width: 300px;
  margin: 0 auto;
  padding: 1em 0.5em 1em 0;
  -webkit-transition:
    color 0.7s,
    background 0.7s,
    padding 0.5s;
  transition:
    color 0.7s,
    background 0.7s,
    padding 0.5s;
}

.table-of-contents li a .date {
  float: right;
  margin-top: -0.25em;
  /* color: rgba(128, 128, 128, 0.8); */
}

.table-of-contents li a:hover {
  background: var(--highlight-bg);
  color: #fffffc;
  text-decoration: none;
  padding-left: 2em;
}

.dark .table-of-contents ul a {
  color: #ddd;
}

.dark .table-of-contents ul a:hover {
  background: #ddd;
  color: #333;
  padding-left: 2em;
}

.arrow {
  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;
  font-size: 1.5em;
  width: 1.5em;
  height: 1.5em;
  background: #ddd;
  /*display: table-cell;*/
  /*vertical-align: middle;*/
  text-align: center;
  /*padding-top: 0.14em;*/
  box-sizing: border-box;
  border-radius: 0.75em;
  opacity: 0.7;
  -webkit-transition:
    background 0.5s,
    opacity 0.5s,
    width 0.5s;
  transition:
    background 0.5s,
    opacity 0.5s,
    width 0.5s;
  cursor: pointer;
}

.arrow:hover {
  box-sizing: border-box;
  width: 2em;
  color: var(--highlight-fg);
  border: 1px solid var(--highlight-fg);
  opacity: 0.9;
  background: #fffffc;
  -webkit-transition:
    background 0.5s,
    opacity 0.5s,
    width 0.5s;
  transition:
    background 0.5s,
    opacity 0.5s,
    width 0.5s;
  text-decoration: none;
}

.dark .arrow {
  background: #222;
}

.dark .arrow:hover {
  color: #c00762;
  border-color: #c00762;
}

.social-buttons {
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 1em 0;
}

.social-buttons > div {
  /*margin: 0 1em;*/
}

.social-buttons .twitter-share-button {
  max-width: 90px;
  margin-right: 5px;
}

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

.monochrome {
  color: #333;
}

.dark .monochrome {
  color: #ddd;
}

.gem-info {
  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;
  margin: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.gem-info table {
  border: 1px solid #333;
  border-collapse: collapse;
}

.gem-info table td {
  border: 1px solid #333;
  padding: 0.4em 1em;
}

.dark .gem-info table {
  border: 1px solid #ddd;
}

.dark .gem-info table td {
  border: 1px solid #ddd;
}

.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;
}

.dark #disqus_thread {
  color: #ddd;
}

#page {
  margin: 4em 0;
}

#theme-button {
  text-transform: uppercase;
  font-family: "Quicksand", "helvetica neue", 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;
}

.dark #theme-button {
  color: #ddd;
}

#beacon {
  font-family: "Oswald", sans-serif;
  font-size: 4em;
  height: 1.5em;
  width: 1.5em;
  text-align: center;
  margin: 0.1em;
  position: absolute;
  border-radius: 0.1em;
  opacity: 0.4;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  color: inherit;
}

#beacon path {
  fill: currentColor;
}

#beacon .logo {
  width: 100%;
  height: 100%;
}

#beacon:hover {
  opacity: 1;
  text-decoration: none;
}

#home-text {
  font-size: 0.3em;
  margin-top: -4.2em;
}

#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: var(--light-bg);
  }

  #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 */
  pre,
  pre.sourceCode,
  div.sourceCode {
    max-width: 100vw;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .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: 350px;
  }
}

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

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

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

table {
  border-collapse: collapse;
}

table,
th,
td {
  border: 1px solid black;
}

th {
  text-align: left;
}

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