/* frontend/styles/index.css */
:root {
  --body-background: #f2f2f2;
  --body-color: #444;
  --heading-color: black;
}
body {
  color: #444;
  color: var(--body-color);
  display: grid;
  font: 12pt Georgia, serif;
  grid-template-areas: "nav body" "nav footer";
  grid-template-columns: 220px 1fr;
  margin-top: 0;
}
h1 {
  color: black;
  color: var(--heading-color);
  font-size: 18pt;
  font-weight: bold;
  padding-top: 0.5em;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: currentcolor;
  text-decoration-thickness: auto;
  text-decoration-color: #ccc;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}
a {
  text-decoration: none;
}
body > header {
  text-align: center;
}
body > header img {
  display: inline-block;
  width: 400px;
  max-width: 100%;
}
body > nav {
  background-color: #ffefcf;
  border: solid 1px black;
  grid-area: nav;
  left: 0;
  min-height: 99vh;
  padding-right: 1em;
  padding-top: 1em;
  position: fixed;
  top: 0;
  width: 240px;
}
a:hover {
  text-decoration: underline;
}
body > nav ul {
  list-style: none;
  margin: 0;
  padding-inline-start: 2em;
}
body > nav p {
  margin-left: 1em;
}
.nav-section-header {
  font-weight: bold;
  margin-bottom: 0;
}
main {
  background: white;
  grid-area: body;
  line-height: 1.4;
  min-height: calc(100vh - 200px);
  padding-left: 4em;
  padding-right: 4em;
  @media (max-width: 500px) {
    padding: 16px 16px 50px;
  }
}
footer {
  font-size: 1em;
  grid-area: footer;
  margin-bottom: 4rem;
  padding-left: 3em;
}
hr {
  border: none;
  border-top: 2px dotted #bbb;
  margin: 3rem 0;
}
table.simple {
  border: 1px solid black;
  border-collapse: collapse;
}
table.simple th,
td {
  border: 1px solid black;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.draft-header {
  color: blue;
  font-size: 18pt;
  font-weight: bold;
  padding-top: 1em;
  text-align: center;
}
.post-date {
  font-size: smaller;
  font-style: italic;
}
.post-summary {
  padding-bottom: 1em;
}
.post-summary a {
  padding-right: 1em;
}
.rss-feed-link {
  float: right;
  font-size: 10pt;
  padding-right: 1em;
  padding-top: 1.5em;
}

/* frontend/styles/syntax-highlighting.css */
pre.highlight {
  padding: 16px;
  background-color: #F6F8FA;
}
.highlight .hll {
  background-color: #ffffcc;
}
.highlight .c {
  color: #999988;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  color: #000000;
  font-weight: bold;
}
.highlight .o {
  color: #000000;
  font-weight: bold;
}
.highlight .cm {
  color: #999988;
  font-style: italic;
}
.highlight .cp {
  color: #999999;
  font-weight: bold;
  font-style: italic;
}
.highlight .c1 {
  color: #999988;
  font-style: italic;
}
.highlight .cs {
  color: #999999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000000;
  background-color: #ffdddd;
}
.highlight .ge {
  color: #000000;
  font-style: italic;
}
.highlight .gr {
  color: #aa0000;
}
.highlight .gh {
  color: #999999;
}
.highlight .gi {
  color: #000000;
  background-color: #ddffdd;
}
.highlight .go {
  color: #888888;
}
.highlight .gp {
  color: #555555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaaaaa;
}
.highlight .gt {
  color: #aa0000;
}
.highlight .kc {
  color: #000000;
  font-weight: bold;
}
.highlight .kd {
  color: #000000;
  font-weight: bold;
}
.highlight .kn {
  color: #000000;
  font-weight: bold;
}
.highlight .kp {
  color: #000000;
  font-weight: bold;
}
.highlight .kr {
  color: #000000;
  font-weight: bold;
}
.highlight .kt {
  color: #445588;
  font-weight: bold;
}
.highlight .m {
  color: #009999;
}
.highlight .s {
  color: #d01040;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #445588;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .nd {
  color: #3c5d5d;
  font-weight: bold;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #990000;
  font-weight: bold;
}
.highlight .nf {
  color: #990000;
  font-weight: bold;
}
.highlight .nl {
  color: #990000;
  font-weight: bold;
}
.highlight .nn {
  color: #555555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  color: #000000;
  font-weight: bold;
}
.highlight .w {
  color: #bbbbbb;
}
.highlight .mf {
  color: #009999;
}
.highlight .mh {
  color: #009999;
}
.highlight .mi {
  color: #009999;
}
.highlight .mo {
  color: #009999;
}
.highlight .sb {
  color: #d01040;
}
.highlight .sc {
  color: #d01040;
}
.highlight .sd {
  color: #d01040;
}
.highlight .s2 {
  color: #d01040;
}
.highlight .se {
  color: #d01040;
}
.highlight .sh {
  color: #d01040;
}
.highlight .si {
  color: #d01040;
}
.highlight .sx {
  color: #d01040;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d01040;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #009999;
}
/*# sourceMappingURL=/_bridgetown/static/index.URVG42FC.css.map */
