/*
  Color Scheme
/*

// $color__background-content: #fff; // posts, pages and sidebar background color.
// $color__background-body: #e4f0f6; // body background color
// $color__text: #000112; // body text color
//
// $color__link: #4e9dd8; // color for links and accents
// $color__link-hover: #2361a7; // alternate color for active or focused links and accents
//
// $color__details: #939496; // color for details such as borders and shadows
// $color__details-lighter: #f0f1f4; // lighter alternative for details
// $color__details-darker: #6d6e70; // darker alternative for details

/*
  Typography
*/
/*
  Layout
*/
/*
  Color Scheme
*/
/*
  Typography
*/
/*
  Layout
*/
:root {
  --color-bg: #fff;
  --color-body: #e4f0f6;
  --color-text: #000112;
  --color-link: #4e9dd8;
  --color-link-hover: #2361a7;
  --color-details: #939496;
  --color-details-lighter: #f0f1f4;
  --color-details-darker: #6d6e70;
  --font: Avenir Next, Corbel, Fira Sans, Trebuchet MS, Ubuntu, sans-serif;
  --font-headings: Avenir Next, Corbel, Fira Sans, Trebuchet MS, Ubuntu, sans-serif;
  --font-code: Cascadia Code, SFMono-Regular, Menlo, Consolas, Fira Mono, DejaVu Sans Mono, monospace;
  --container: 1180px;
  --gap: 2rem;
}

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

/*
  Basic styling
*/
html {
  font-size: 16px;
}

body {
  background-color: var(--color-body);
  font-family: var(--font);
  line-height: 1.5;
}

/*
  Accessibility helpers
*/
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/*
  Text Elements
*/
.content-body p,
.content-body pre,
.content-body blockquote,
.content-body dl,
.content-body ul,
.content-body ol,
.content-body figure,
.content-body iframe,
.content-body table,
.content-body .highlight {
  margin-bottom: var(--gap);
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 250ms ease;
}
a:hover, a:focus {
  color: var(--color-link-hover);
  text-decoration: underline;
}

ul,
ol {
  margin-left: var(--gap);
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

dl dt + dd {
  margin-bottom: calc(var(--gap) / 2);
}
dl dt + dd + dt {
  margin-top: calc(var(--gap) / 2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-family: var(--font-headings);
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.875rem;
}

h6 {
  font-size: 0.75rem;
}

pre {
  max-width: 100%;
  overflow-x: auto;
}

img,
iframe,
video,
audio {
  max-width: 100%;
  border-radius: 3px;
  box-shadow: 0 2px 5px var(--color-details);
}

table {
  border: 1px solid var(--color-details-lighter);
  border-radius: 3px;
  border-collapse: collapse;
  color: var(--color-details-darker);
  width: 100%;
}
table th,
table td {
  border-bottom: 1px solid var(--color-details-lighter);
  padding: calc(var(--gap) / 4);
  text-align: left;
}
table th {
  background: var(--color-details-lighter);
}

blockquote {
  border-left: 4px solid var(--color-details-lighter);
  padding-left: calc(var(--gap) / 2);
  padding-top: calc(var(--gap) / 4);
  padding-bottom: calc(var(--gap) / 4);
  font-style: italic;
  color: var(--color-details-darker);
}
blockquote > :last-child {
  margin-bottom: 0;
}

hr {
  width: 250px;
  height: 3px;
  margin: calc(var(--gap) * 2) auto;
  background-color: var(--color-details-lighter);
  border: none;
  border-radius: 3px;
}

input[type=text],
input[type=email],
input[type=password],
input[type=search],
input[type=tel],
input[type=number],
input[type=color],
input[type=url],
input[type=button],
input[type=reset],
input[type=submit],
textarea,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: var(--color-bg);
  padding: 5px;
  margin: 0;
  font: inherit;
}

input[type=text],
input[type=email],
input[type=password],
input[type=search],
input[type=tel],
input[type=number],
input[type=color],
input[type=url],
textarea {
  border-bottom: 3px dashed var(--color-details-lighter);
  transition: border-bottom-color 250ms ease;
}
input[type=text]:hover, input[type=text]:focus,
input[type=email]:hover,
input[type=email]:focus,
input[type=password]:hover,
input[type=password]:focus,
input[type=search]:hover,
input[type=search]:focus,
input[type=tel]:hover,
input[type=tel]:focus,
input[type=number]:hover,
input[type=number]:focus,
input[type=color]:hover,
input[type=color]:focus,
input[type=url]:hover,
input[type=url]:focus,
textarea:hover,
textarea:focus {
  outline: none;
  border-bottom-color: var(--color-link);
}

input[type=button],
input[type=reset],
input[type=submit],
button {
  box-shadow: inset 0 0 0 var(--color-details-lighter);
  border-bottom: 3px solid var(--color-details-lighter);
  color: var(--color-link);
  transition-property: color, box-shadow, border-bottom-color;
  transition-duration: 250ms;
  transition-timing-function: ease;
  padding-left: 10px;
  padding-right: 10px;
}
input[type=button]:hover, input[type=button]:focus,
input[type=reset]:hover,
input[type=reset]:focus,
input[type=submit]:hover,
input[type=submit]:focus,
button:hover,
button:focus {
  cursor: pointer;
  box-shadow: inset 0 -2.5em 0 var(--color-link);
  border-bottom-color: var(--color-link-hover);
  color: var(--color-details-lighter);
}
input[type=button]:active,
input[type=reset]:active,
input[type=submit]:active,
button:active {
  box-shadow: inset 0 -2.5em 0 var(--color-link-hover);
}

body {
  display: flex;
  flex-flow: column nowrap;
  min-height: 100vh;
  max-width: var(--container);
  margin: var(--gap) auto;
  padding-left: calc(var(--gap) / 2);
  padding-right: calc(var(--gap) / 2);
}
@media screen and (max-width: 600px) {
  body {
    padding-left: 0;
    padding-right: 0;
  }
}

/*
  Site Header
*/
.masthead {
  margin-bottom: calc(var(--gap) * 2);
}
.masthead .site-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: var(--gap);
  text-align: center;
  color: var(--color-link);
  overflow: visible;
}
.masthead .site-title .logo {
  display: inline-block;
  max-width: 250px;
  margin: calc(var(--gap) / 4);
  box-shadow: none;
  filter: drop-shadow(0 0 var(--gap) var(--color-details-lighter));
}
.masthead .site-title:hover, .masthead .site-title:focus {
  text-decoration: none;
}

.site-menu {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .site-menu {
    flex-flow: row nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    margin-left: calc(var(--gap) / -2);
    margin-right: calc(var(--gap) / -2);
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .site-menu::-webkit-scrollbar {
    display: none;
  }
}
.site-menu::before, .site-menu::after {
  content: " ";
  display: block;
}
.site-menu::before {
  margin-left: auto;
  padding-left: calc(var(--gap) / 2);
}
.site-menu::after {
  margin-right: auto;
  padding-right: calc(var(--gap) / 2);
}

.menu-item {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.7);
  background-color: var(--color-link);
  border-radius: 1.5rem;
  font-weight: bolder;
  padding: 0.5rem 1rem;
}
.menu-item:not(:last-child) {
  margin-right: var(--gap);
}
@media screen and (max-width: 600px) {
  .menu-item:not(:last-child) {
    margin-right: calc(var(--gap) / 2);
  }
}
.menu-item:hover, .menu-item:focus {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

/*
  Content
*/
.content {
  background-color: var(--color-bg);
  padding: calc(var(--gap) * 2);
  margin-bottom: var(--gap);
}
@media screen and (max-width: 600px) {
  .content {
    padding-left: var(--gap);
    padding-right: var(--gap);
  }
}
.content > *:last-child {
  margin-bottom: 0;
}

.content-header {
  margin-bottom: var(--gap);
  text-align: center;
}
.content-header .content-title {
  font-size: 2rem;
}
.content-header .content-title a {
  color: var(--color-text);
}
.content-header .content-meta {
  font-size: 0.75rem;
}
.content-header .content-meta a {
  color: var(--color-details);
  display: inline-block;
}
.content-header .content-meta a:not(:last-child) {
  margin-right: calc(var(--gap) / 2);
}

.content-body > :last-child {
  margin-bottom: 0;
}

.content-footer {
  margin-top: var(--gap);
  font-size: 0.75rem;
  color: var(--color-details);
}
.content-footer .content-tags {
  display: block;
  list-style: none;
  margin-left: 0;
}
.content-footer .content-tags li {
  display: inline-block;
  font-size: 0.875rem;
}
.content-footer .content-tags li:not(:last-child)::after {
  padding-left: calc(var(--gap) / 4);
  padding-right: calc(var(--gap) / 4);
  content: "/";
  color: var(--color-details-lighter);
}
.content-footer .content-tags li a {
  color: var(--color-details-darker);
}

.content-navigation {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600) {
  .content-navigation {
    flex-flow: column nowrap;
  }
}
.content-navigation .nav-link {
  background: var(--color-bg);
  padding: calc(var(--gap) / 2) var(--gap);
}
@media screen and (max-width: 600px) {
  .content-navigation .nav-link {
    width: 100%;
    margin-bottom: var(--gap);
  }
}
.content-navigation .nav-link.prev-link {
  justify-self: flex-start;
  margin-right: auto;
}
.content-navigation .nav-link.next-link {
  justify-self: flex-end;
  margin-left: auto;
  text-align: right;
}

.layout-blog .container,
.layout-post .container,
.layout-archive .container,
.layout-home .container {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 2fr 1fr;
  grid-template-areas: "content sidebar" "content sidebar" "content .";
}
@media screen and (max-width: 600px) {
  .layout-blog .container,
  .layout-post .container,
  .layout-archive .container,
  .layout-home .container {
    grid-template-columns: 100%;
    grid-template-areas: "search" "content" "sidebar";
  }
}

.blog-page {
  grid-area: content;
  min-width: 0;
}

.archive-header {
  padding: var(--gap);
  background: var(--color-bg);
  margin-bottom: var(--gap);
}
.archive-header h1 {
  font-size: 0.75rem;
  font-weight: normal;
  color: var(--color-details);
}
.archive-header h1 strong {
  font-size: 1.75rem;
  color: var(--color-text);
  text-transform: uppercase;
}

.widget {
  background-color: var(--color-bg);
  padding: var(--gap);
}

.-search {
  grid-area: sidebar;
  grid-row: 1;
}
@media screen and (max-width: 600px) {
  .-search {
    grid-area: search;
  }
}

.-sidebar {
  grid-area: sidebar;
  grid-row: 2;
}
@media screen and (max-width: 600px) {
  .-sidebar {
    grid-row: auto;
  }
}
.-sidebar > *:not(:last-child) {
  margin-bottom: calc(var(--gap) * 2);
}

.social-links {
  margin-left: 0;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.social-links .link {
  display: inline-block;
  margin: calc(var(--gap) / 2);
  margin-top: 0;
}
.social-links .link svg {
  width: 1.5rem;
  height: 1.5rem;
}

.blogroll .blogroll-title {
  font-weight: normal;
  margin-bottom: calc(var(--gap) / 2);
}
.blogroll .blogroll-list {
  list-style: none;
  margin-left: 0;
}
.blogroll .blogroll-list .link {
  padding-top: calc(var(--gap) / 2);
  padding-bottom: calc(var(--gap) / 2);
  border-bottom: 1px solid var(--color-details-lighter);
}
.blogroll .blogroll-list .link:first-child {
  border-top: 1px solid var(--color-details-lighter);
}
.blogroll .blogroll-list .link a {
  color: var(--color-details);
}
.blogroll .blogroll-list .link a:hover, .blogroll .blogroll-list .link a:focus {
  color: var(--color-details-darker);
}

label[for=search_terms] {
  display: inline-block;
  margin-bottom: calc(var(--gap) / 2);
}

.search-controls {
  display: flex;
  flex-flow: row nowrap;
  font-size: 0.75rem;
}
.search-controls input[name=q] {
  max-width: 400px;
  width: 100%;
}

.comments-title {
  margin-bottom: var(--gap);
}

.comments-notice {
  margin-top: calc(var(--gap) / 2);
  margin-bottom: calc(var(--gap) / 2);
  color: var(--color-details-darker);
}

.comments-list {
  list-style: none;
  margin-left: 0;
  margin-bottom: var(--gap);
}
.comments-list .comment-item {
  margin-bottom: var(--gap);
  padding-bottom: var(--gap);
  border-bottom: 3px dotted var(--color-details-lighter);
}

.comment {
  font-size: 95%;
}
.comment .comment-meta {
  margin-bottom: 1rem;
}
.comment .author-avatar {
  width: 2.5rem;
  border-radius: 5px;
  box-shadow: 0 0 2px var(--color-details);
  float: left;
  margin-right: 1rem;
}
.comment .comment-body > *:not(:last-child) {
  margin-bottom: 0.5rem;
}

.comment-message-area {
  margin-bottom: calc(var(--gap) / 2);
}

.message-area {
  width: 100%;
  resize: vertical;
}

.comment-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: calc(var(--gap) / 2);
  margin-bottom: calc(var(--gap) / 2);
}
@media screen and (max-width: 800px) {
  .comment-fields {
    grid-template-columns: 1fr;
    flex-flow: column nowrap;
  }
}
.comment-fields input {
  min-width: 0;
  width: auto;
}

.comment-actions {
  display: flex;
  justify-content: flex-end;
}

/*
  Site Footer
*/
.colophon {
  margin-top: calc(var(--gap) * 2);
  font-size: 0.875rem;
}
.colophon h5 a {
  color: currentColor;
}
.colophon .site-info {
  text-align: center;
}
.colophon .external-links {
  text-align: center;
  list-style: none;
  margin: calc(var(--gap) / 2) 0;
}
.colophon .external-links .link {
  display: inline-block;
}
.colophon .external-links .link a {
  color: var(--color-details-darker);
  display: inline-block;
}
.colophon .external-links .link:not(:last-child)::after {
  content: "/";
  color: var(--color-details-lighter);
  display: inline-block;
  margin-left: calc(var(--gap) / 4);
  margin-right: calc(var(--gap) / 4);
}

code,
pre {
  font-family: var(--font-code);
}

code {
  font-size: 85%;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: var(--spacer-3);
  overflow: auto;
}

.highlight {
  padding: var(--spacer);
  margin-bottom: var(--spacer);
  background-color: var(--code-bg);
  border-radius: var(--border-radius);
}
.highlight pre {
  margin-bottom: 0;
}
.highlight .highlight {
  padding: 0;
}

.rouge-table {
  margin-bottom: 0;
  font-size: 100%;
}
.rouge-table,
.rouge-table td,
.rouge-table th {
  border: 0;
}
.rouge-table .gutter {
  vertical-align: top;
  user-select: none;
  opacity: 0.25;
}

.gist .markdown-body {
  padding: 15px !important;
}

.highlight .hll {
  background-color: #ffc;
}

.highlight .c {
  color: #999;
} /* Comment */
.highlight .err {
  color: #a00;
  background-color: #faa;
} /* Error */
.highlight .k {
  color: #069;
} /* Keyword */
.highlight .o {
  color: #555;
} /* Operator */
.highlight .cm {
  color: #09f;
  font-style: italic;
} /* Comment.Multiline */
.highlight .cp {
  color: #099;
} /* Comment.Preproc */
.highlight .c1 {
  color: #999;
} /* Comment.Single */
.highlight .cs {
  color: #999;
} /* Comment.Special */
.highlight .gd {
  background-color: #fcc;
  border: 1px solid #c00;
} /* Generic.Deleted */
.highlight .ge {
  font-style: italic;
} /* Generic.Emph */
.highlight .gr {
  color: #f00;
} /* Generic.Error */
.highlight .gh {
  color: #030;
} /* Generic.Heading */
.highlight .gi {
  background-color: #cfc;
  border: 1px solid #0c0;
} /* Generic.Inserted */
.highlight .go {
  color: #aaa;
} /* Generic.Output */
.highlight .gp {
  color: #009;
} /* Generic.Prompt */
/* Generic.Strong */
.highlight .gu {
  color: #030;
} /* Generic.Subheading */
.highlight .gt {
  color: #9c6;
} /* Generic.Traceback */
.highlight .kc {
  color: #069;
} /* Keyword.Constant */
.highlight .kd {
  color: #069;
} /* Keyword.Declaration */
.highlight .kn {
  color: #069;
} /* Keyword.Namespace */
.highlight .kp {
  color: #069;
} /* Keyword.Pseudo */
.highlight .kr {
  color: #069;
} /* Keyword.Reserved */
.highlight .kt {
  color: #078;
} /* Keyword.Type */
.highlight .m {
  color: #f60;
} /* Literal.Number */
.highlight .s {
  color: #d44950;
} /* Literal.String */
.highlight .na {
  color: #4f9fcf;
} /* Name.Attribute */
.highlight .nb {
  color: #366;
} /* Name.Builtin */
.highlight .nc {
  color: #0a8;
} /* Name.Class */
.highlight .no {
  color: #360;
} /* Name.Constant */
.highlight .nd {
  color: #99f;
} /* Name.Decorator */
.highlight .ni {
  color: #999;
} /* Name.Entity */
.highlight .ne {
  color: #c00;
} /* Name.Exception */
.highlight .nf {
  color: #c0f;
} /* Name.Function */
.highlight .nl {
  color: #99f;
} /* Name.Label */
.highlight .nn {
  color: #0cf;
} /* Name.Namespace */
.highlight .nt {
  color: #2f6f9f;
} /* Name.Tag */
.highlight .nv {
  color: #033;
} /* Name.Variable */
.highlight .ow {
  color: #000;
} /* Operator.Word */
.highlight .w {
  color: #bbb;
} /* Text.Whitespace */
.highlight .mf {
  color: #f60;
} /* Literal.Number.Float */
.highlight .mh {
  color: #f60;
} /* Literal.Number.Hex */
.highlight .mi {
  color: #f60;
} /* Literal.Number.Integer */
.highlight .mo {
  color: #f60;
} /* Literal.Number.Oct */
.highlight .sb {
  color: #c30;
} /* Literal.String.Backtick */
.highlight .sc {
  color: #c30;
} /* Literal.String.Char */
.highlight .sd {
  color: #c30;
  font-style: italic;
} /* Literal.String.Doc */
.highlight .s2 {
  color: #c30;
} /* Literal.String.Double */
.highlight .se {
  color: #c30;
} /* Literal.String.Escape */
.highlight .sh {
  color: #c30;
} /* Literal.String.Heredoc */
.highlight .si {
  color: #a00;
} /* Literal.String.Interpol */
.highlight .sx {
  color: #c30;
} /* Literal.String.Other */
.highlight .sr {
  color: #3aa;
} /* Literal.String.Regex */
.highlight .s1 {
  color: #c30;
} /* Literal.String.Single */
.highlight .ss {
  color: #fc3;
} /* Literal.String.Symbol */
.highlight .bp {
  color: #366;
} /* Name.Builtin.Pseudo */
.highlight .vc {
  color: #033;
} /* Name.Variable.Class */
.highlight .vg {
  color: #033;
} /* Name.Variable.Global */
.highlight .vi {
  color: #033;
} /* Name.Variable.Instance */
.highlight .il {
  color: #f60;
} /* Literal.Number.Integer.Long */
.css .o,
.css .o + .nt,
.css .nt + .nt {
  color: #999;
}

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