/**
 * Reset some basic elements
 */
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

/**
 * Basic styling
 */
body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #59554E;
  background-color: #a0a295;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
}

.pane {
  display: flex;
  gap: 1rem;
  min-height: 100vh;
  flex-direction: column;
  max-width: -webkit-calc(800px - (1.9rem * 2));
  max-width: calc(800px - 1.9rem * 2);
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .pane {
    max-width: -webkit-calc(800px - (1.9rem));
    max-width: calc(800px - (1.9rem));
  }
}

/**
 * `main` element
 */
main {
  display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */
  flex: 1;
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 0.875rem;
}

/**
 * Lists
 */
ul, ol {
  margin-left: 1.9rem;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Headings
 */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

/**
 * Links
 */
a {
  color: #59554E;
}
a:hover {
  color: #756F66;
}
a:focus-visible {
  outline: 2px solid #59554E;
  outline-offset: 2px;
  border-radius: 0.1rem;
}

/**
 * Blockquotes
 */
blockquote {
  color: #59554E;
  border-left: 4px solid rgb(190.0778443114, 186.748502994, 180.9221556886);
  padding-left: 0.95rem;
  font-size: 1.125rem;
  letter-spacing: -1px;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Clearfix
 */
.pane:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * Icons
 */
.svg-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  fill: #59554E;
  padding-right: 5px;
  vertical-align: text-top;
}

.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.wrapper {
  padding-right: 1.9rem;
  padding-left: 1.9rem;
}

/**
 * Site header
 */
.site-header {
  border-bottom: 1px solid rgb(190.0778443114, 186.748502994, 180.9221556886);
  min-height: 3.5435rem;
  padding-right: 1.9rem;
  padding-left: 1.9rem;
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.site-title {
  font-size: 2rem;
  font-weight: 400;
  line-height: 3.375rem;
  letter-spacing: -1px;
  margin: 0;
  color: #59554E;
}
.site-title a {
  text-decoration: none;
}
.site-title a:visited {
  color: #59554E;
}

.page-link {
  color: #59554E;
  line-height: 1.5;
}
.page-link:visited {
  color: #59554E;
}

/**
 * Site footer
 */
.site-footer {
  border-top: 1px solid rgb(190.0778443114, 186.748502994, 180.9221556886);
  padding: 1.9rem;
  box-sizing: border-box;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.site-footer a {
  text-decoration: none;
}

.post-list-heading {
  font-size: 1.75rem;
  margin-bottom: 1.2rem;
}

.post-list {
  margin-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.post-list li a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
}

.post-meta {
  font-size: 0.75rem;
  color: #59554E;
}

.post-link {
  font-size: 1.5rem;
}

.post-excerpt {
  font-size: 1rem;
}

/**
 * Posts
 */
.post {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.post-title {
  font-size: 1.5rem;
  letter-spacing: -1px;
  line-height: 1;
}

.post-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.post-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
}
.post-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
}
.post-content h4 {
  font-weight: 700;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.post-nav a {
  text-decoration: none;
  font-style: italic;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  font-style: italic;
}
.gallery .entry {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

@media (min-width: 600px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    margin: 0.2rem 0;
  }
  .post {
    gap: 2rem;
  }
  .post-content {
    gap: 1.2rem;
  }
}
/**
 * Syntax highlighting styles
 */
.highlight {
  background: #fff;
}
.highlighter-rouge .highlight {
  background: #eef;
}
.highlight .c {
  color: #998;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  font-weight: bold;
}
.highlight .o {
  font-weight: bold;
}
.highlight .cm {
  color: #998;
  font-style: italic;
}
.highlight .cp {
  color: #999;
  font-weight: bold;
}
.highlight .c1 {
  color: #998;
  font-style: italic;
}
.highlight .cs {
  color: #999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000;
  background-color: #fdd;
}
.highlight .gd .x {
  color: #000;
  background-color: #faa;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gr {
  color: #a00;
}
.highlight .gh {
  color: #999;
}
.highlight .gi {
  color: #000;
  background-color: #dfd;
}
.highlight .gi .x {
  color: #000;
  background-color: #afa;
}
.highlight .go {
  color: #888;
}
.highlight .gp {
  color: #555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaa;
}
.highlight .gt {
  color: #a00;
}
.highlight .kc {
  font-weight: bold;
}
.highlight .kd {
  font-weight: bold;
}
.highlight .kp {
  font-weight: bold;
}
.highlight .kr {
  font-weight: bold;
}
.highlight .kt {
  color: #458;
  font-weight: bold;
}
.highlight .m {
  color: #099;
}
.highlight .s {
  color: #d14;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #458;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #900;
  font-weight: bold;
}
.highlight .nf {
  color: #900;
  font-weight: bold;
}
.highlight .nn {
  color: #555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  font-weight: bold;
}
.highlight .w {
  color: #bbb;
}
.highlight .mf {
  color: #099;
}
.highlight .mh {
  color: #099;
}
.highlight .mi {
  color: #099;
}
.highlight .mo {
  color: #099;
}
.highlight .sb {
  color: #d14;
}
.highlight .sc {
  color: #d14;
}
.highlight .sd {
  color: #d14;
}
.highlight .s2 {
  color: #d14;
}
.highlight .se {
  color: #d14;
}
.highlight .sh {
  color: #d14;
}
.highlight .si {
  color: #d14;
}
.highlight .sx {
  color: #d14;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d14;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #099;
}

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