@charset "UTF-8";
/**
 *  Colors for my website (syntax highlighting and UI).
 */
.color-magenta {
  color: #655978;
}

/**
 *  Buttons
 */
button {
  cursor: pointer;
}

/**
 * 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: 400 1rem/1.5 sans-serif;
  color: #111;
  background-color: #fdfdfd;
  font-kerning: normal;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
h1, h2, h3, h4, h5, h6,
p:not(.comments p), blockquote, pre,
ul, ol, dl, figure {
  margin-top: 15px;
  margin-bottom: 15px;
}

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

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

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

figcaption {
  font-size: 0.875rem;
}

/**
 * Lists
 */
ul, ol {
  margin-left: 30px;
}

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

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

/**
 * Blockquotes
 */
blockquote {
  border-left: 0.2em solid #837297;
  padding-left: 0.75em;
  letter-spacing: -1px;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
pre, code {
  margin: 0px;
}

.comment-markdown p code, code.highlighter-rouge {
  font-size: 0.9375rem;
  color: #2b2b2b;
  padding: 0.1em 0.2em;
  border: 0.1em solid #837297;
  background-color: #eef;
  border-radius: 0.1em;
}

.comment-markdown pre code {
  width: 100%;
  box-sizing: border-box;
  display: inline-block;
}

.comment-markdown pre code, figure.highlight, div.highlighter-rouge {
  color: #2b2b2b;
  font-size: 1rem;
  padding: 0.5em 0.75em;
  background-color: #eef;
  overflow-x: auto;
  border: 0.2em solid #837297;
  border-radius: 0.25em;
}

pre td {
  padding: 0px;
}

pre.lineno {
  padding-right: 12px;
  color: grey;
  border-right: 1px dotted grey;
  border-radius: 0px;
}

td.code {
  padding-left: 12px;
}

/**
 * Wrapper
 */
.wrapper {
  max-width: -webkit-calc($usable-width);
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}

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

/**
 * Tables
 */
table:not(.post-table):not(.rouge-table) {
  color: #2b2b2b;
  position: relative;
  width: 100%;
  text-align: left;
  margin-bottom: 30px;
  border-collapse: separate;
  border: 0.4em solid #837297;
  border-radius: 0.5em;
}
table:not(.post-table):not(.rouge-table) th, table:not(.post-table):not(.rouge-table) td {
  padding: 0.4em 0.8em;
  border: 1px solid #eef;
}
table:not(.post-table):not(.rouge-table) th {
  background-color: #eef;
}
table:not(.post-table):not(.rouge-table) tr:nth-child(even) {
  background-color: #f7f7f7;
}

/**
 *  Elements that need javascript are hidden by default
 *  and shown once <script> is executed.
 */
.hidden-no-js {
  display: none;
}

/**
 * Site header
 */
.site-header {
  border-bottom: 1px solid #e8e8e8;
}

.site-title {
  font-size: 1.625rem;
  font-weight: bold;
  letter-spacing: -1px;
  margin: 0.5rem 0;
}

.nav-selected {
  font-weight: bold;
}

.site-nav {
  margin: 0.5rem 0;
}
.site-nav .page-link {
  color: #111;
  margin-right: 0.5em;
  font-size: 1.2rem;
}

/**
 * Page content
 */
.page-content {
  flex: 1;
}

.post-meta {
  margin-bottom: 30px;
}

.post-list-meta, .post-link {
  font-size: 1.1rem;
}

.post-table {
  border-collapse: collapse;
}

/**
 * Posts
 */
.post-title {
  font-size: 1.625rem;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0;
  font-weight: bold;
}

.post-content h1, .post-content h2, .post-content h3 {
  font-weight: bold;
}
.post-content h1 {
  font-size: 1.2rem;
}
.post-content h2 {
  font-size: 1.1rem;
}
.post-content h3 {
  font-size: 1rem;
}

/**
 *  Footnotes
 */
.footnotes {
  border-top: 1px solid #e8e8e8;
}

.footnote {
  padding-left: 0.1em;
}

/**
 *  Action elements.
 */
.action {
  color: #655978;
  text-decoration: underline;
  cursor: pointer;
}

/**
 *  No script password elements.
 */
.password-change, .password-reset {
  margin-top: 0.5em;
}

/**
 *  Post list
 */
.blog-subtitle {
  margin-top: 0.5rem;
  margin-bottom: 30px;
}

.blog-subpage-title {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.blog-subpage-title ~ a:not(last-child) {
  margin-right: 0.5em;
}

.post-table {
  border-collapse: collapse;
}
.post-table .post-list-meta, .post-table .post-link {
  font-size: 1.1rem;
}

/**
 *  Comments
 */
.comment-separator {
  border-top: 1px solid #e8e8e8;
}

.comments {
  padding-top: 15px;
}
.comments .reply-input {
  display: none;
}
.comments .reply-input:checked ~ .markdown {
  background-color: #f4eddc;
}
.comments .reply-input:checked ~ .reply-label {
  display: none;
}
.comments .reply-input:checked ~ .input-form {
  display: block;
}
.comments .input-form {
  display: none;
}
.comments .top {
  margin-bottom: 1em;
}
.comments .top > *:not(last-child) {
  margin-right: 0.5em;
}
.comments .content .toggle-input {
  display: none;
}
.comments .content .toggle-label {
  font-size: 0.9em;
  color: #655978;
  float: left;
  width: 2em;
  cursor: pointer;
}
.comments .content .toggle-label::before {
  content: "[−]";
}
.comments .content .toggle-input:checked + .toggle-label::before {
  content: "[+]";
}
.comments .content .comment {
  margin-bottom: 1em;
}
.comments .content .comment .info {
  font-size: 0.9em;
  color: #655978;
}

/**
 *  Copy button
 *
 *  https://remarkablemark.org/blog/2021/06/01/add-copy-code-to-clipboard-button-to-jeyll-site/
 */
pre.highlight {
  position: relative;
}
pre.highlight:hover > button {
  opacity: 1;
}
pre.highlight button {
  opacity: 0;
  width: 5em;
  color: #655978;
  border-color: #655978;
  background-color: #eef;
  border-radius: 0.2em;
  transition: all 0.2s ease-out;
  font-size: 1em;
  position: absolute;
  top: 0;
  right: 0;
}
pre.highlight button:active, pre.highlight button:focus, pre.highlight button:hover {
  opacity: 1;
  color: #eef;
  background-color: #655978;
}

.input-form {
  margin-top: 0.5em;
}
.input-form details, .input-form .details {
  color: #655978;
}
.input-form details span, .input-form .details span {
  font-size: 0.8em;
}
.input-form .input {
  font: 400 1rem/1.5 sans-serif;
  margin-bottom: 0.5em;
}
.input-form .eye-input {
  display: none;
}
.input-form .eye-off {
  display: none;
}
.input-form .eye-input:checked + label .eye {
  display: none;
}
.input-form .eye-input:checked + label .eye-off {
  display: inline;
}
.input-form textarea {
  width: 100%;
  min-height: 20em;
  resize: none;
  padding: 0.1em;
  margin-top: 0;
  margin-bottom: 0.5em;
}
.input-form .comment-markdown {
  display: none;
  width: 100%;
  height: 20em;
  overflow-y: auto;
  padding: 0.1em;
  margin-top: 0;
  margin-bottom: 0.5em;
  border: 2px solid transparent;
}
.input-form button {
  font: 400 1rem/1.5 sans-serif;
  background: #eef;
  color: #111;
  border: 0.1em solid #837297;
  border-radius: 0.2em;
  text-decoration: none;
  margin-right: 0.5em;
  margin-top: 0.5em;
}
.input-form:invalid button {
  opacity: 0.5;
  pointer-events: none;
}
.input-form .cancel-reply {
  margin-right: 0.5em;
}
.input-form .preview-input {
  display: none;
}
.input-form .preview-input + label::before {
  content: "preview";
}
.input-form .preview-input:checked + label::before {
  content: "edit";
}

/**
 *  Photography
 */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 10px;
}
.grid-container .grid-item {
  width: 100%;
}
.grid-container .grid-item .grid-photo {
  height: auto;
  max-width: 100%;
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: auto;
  margin-right: auto;
}
.grid-container .grid-item .photo-caption {
  margin-bottom: 30px;
}

#carousel-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#carousel-container a {
  color: #111;
  text-decoration: none;
  background-color: #eef;
  padding: 0.2em 0.4em;
  border: 0.15em solid #837297;
  border-radius: 0.4em;
}

/**
 *  Social media icons
 */
.social-media-list {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 740px;
}

.highlight .err {
  color: #fdfdfd;
  background-color: #D51A24;
}
.highlight .c {
  color: #514E4D;
}
.highlight .cm {
  color: #514E4D;
}
.highlight .cp {
  color: #307722;
}
.highlight .cpf {
  color: #914d08;
}
.highlight .c1 {
  color: #514E4D;
}
.highlight .cs {
  color: #514E4D;
}
.highlight .gd .x {
  color: #D51A24;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gh {
  color: inherit;
}
.highlight .gi {
  color: inherit;
}
.highlight .gi .x {
  color: inherit;
}
.highlight .go {
  color: inherit;
}
.highlight .gp {
  color: inherit;
}
.highlight .gr {
  color: #D51A24;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gt {
  color: inherit;
}
.highlight .gu {
  color: inherit;
}
.highlight .k {
  color: #D51A24;
  font-weight: bold;
}
.highlight .kc {
  color: #D51A24;
  font-weight: bold;
}
.highlight .kd {
  color: #D51A24;
  font-weight: bold;
}
.highlight .kp {
  color: #D51A24;
  font-weight: bold;
}
.highlight .kr {
  color: #D51A24;
  font-weight: bold;
}
.highlight .kt {
  color: #1C6ACA;
}
.highlight .n {
  color: inherit;
}
.highlight .na {
  color: inherit;
}
.highlight .nb {
  color: #D51A24;
  font-weight: bold;
}
.highlight .bp {
  color: #D51A24;
  font-weight: bold;
}
.highlight .nc {
  color: inherit;
}
.highlight .ne {
  color: inherit;
}
.highlight .nf {
  color: #307722;
  font-weight: bold;
}
.highlight .ni {
  color: inherit;
}
.highlight .nl {
  color: #D51A24;
  font-weight: bold;
}
.highlight .nn {
  color: inherit;
}
.highlight .no {
  color: inherit;
}
.highlight .nt {
  color: #D51A24;
}
.highlight .nv {
  color: inherit;
}
.highlight .vc {
  color: inherit;
}
.highlight .vg {
  color: inherit;
}
.highlight .vi {
  color: inherit;
}
.highlight .o {
  color: inherit;
}
.highlight .ow {
  color: inherit;
}
.highlight .m {
  color: #655978;
}
.highlight .mf {
  color: #655978;
}
.highlight .mh {
  color: #655978;
}
.highlight .mi {
  color: #655978;
}
.highlight .il {
  color: #655978;
}
.highlight .mo {
  color: #655978;
}
.highlight .s {
  color: #914d08;
}
.highlight .s1 {
  color: #914d08;
}
.highlight .s2 {
  color: #914d08;
}
.highlight .sb {
  color: #914d08;
}
.highlight .sc {
  color: #914d08;
}
.highlight .sd {
  color: #914d08;
}
.highlight .se {
  color: #914d08;
}
.highlight .sh {
  color: #914d08;
}
.highlight .si {
  color: #914d08;
}
.highlight .sr {
  color: #914d08;
}
.highlight .ss {
  color: #914d08;
}
.highlight .sx {
  color: #914d08;
}
.highlight .w {
  color: #514E4D;
}
.highlight .lineno, .highlight .gl {
  color: #514E4D;
}
.highlight .hll {
  background-color: #F7C5C7;
}

/**
 *  Tags
 */
.tags {
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid #e8e8e8;
}

.tag, #tag-cloud > a {
  padding-right: 0.5em;
}

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