@charset "UTF-8";
/*
:root {
    --bg: #f6f6f6;
    --primary: #333;
    --border: #555;
}
*/
:root {
  --solar-yellow: #6f5400;
  --solar-orange: #9a3911;
  --solar-red: #9a3911;
  --solar-magenta: #9f2962;
  --solar-violet: #4f538f;
  --solar-blue: #195c8c;
  --solar-cyan: #1a625d;
  --solar-green: #525e00;
  --text-primary: #333;
}

@media (prefers-color-scheme: dark) {
  :root {
    --solar-yellow: #b58900;
    --solar-orange: #cb4b16;
    --solar-red: #dc322f;
    --solar-magenta: #d33682;
    --solar-violet: #6c71c4;
    --solar-blue: #268bd2;
    --solar-cyan: #2aa198;
    --solar-green: #859900;
  }
}
html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background: #f6f6f6;
  font-family: Charter, "PT Serif", Georgia, Times, "Times New Roman", serif;
  color: #333;
  scroll-behavior: smooth;
  line-height: 1.5;
}

@media (min-width: 640px) {
  html {
    font-size: 22px;
  }
}
body {
  margin: 0 1em;
}

p {
  text-wrap: pretty;
}

time,
.projects li,
.featured-article {
  font-family: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  color: #545454;
}

.featured-article {
  text-transform: uppercase;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: -3rem;
}

main,
.footer-thin {
  max-width: 640px;
  margin: 0 auto;
}

h1 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

/* for h2, I want font-size to = 33px.
 * This is achieved by font-size: 1.5rem;
 * because 1.5rem is the same as the baseline,
 * which, again, is 33px.
 * Line height is 1.5 and therefore the expected
 * total height is 33 * 1.5 = 49.5px (2.75rem).
 * When it's two lines, the expected total height
 * is 33 * 3 = 99px (4.5rem).
 */
h2 {
  font-size: 1.5rem;
  margin-top: 3.25rem;
  margin-bottom: 2rem;
}

h2 code {
  line-height: 2rem; /* 2rem = 44px (4/3 of the baseline). Fixes an idiosincracy of the monospace font, since I had an issue with an extra 1px when dealing with h2 that had <code> in it */
  font-size: inherit;
}

header {
  text-align: center;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Baseline for default links */
/* https://moderncss.dev/modern-css-for-dynamic-component-based-architecture/#css-reset-additions */
a:not([class]) {
  /* Relatively sized thickness and offset */
  text-underline-offset: 0.15em;
}

nav ul {
  padding-left: 0;
}

li + li {
  margin-top: 0.5rem;
}

blockquote {
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.5rem; /* 4/3 of the font size */
  padding-left: 1rem;
  border-left: 4px solid rgba(170, 170, 170, 0.5);
  margin: 3rem 0;
}

hr {
  border: 0;
  border-top: 1px dotted rgba(170, 170, 170, 0.5);
  margin: 1.5rem;
}

abbr[title] {
  text-decoration: none;
  border-bottom: 1px dotted #aaa;
}

@media (min-width: 48rem) {
  article header {
    position: relative;
  }
  .entry-title {
    width: 95vw;
    position: relative;
    left: calc(50% - 95vw / 2);
  }
}
@media (min-width: 60rem) {
  .entry-title {
    width: 50rem;
    left: calc(50% - 25rem);
  }
}
a {
  color: rgb(23.98, 99.19, 161.32);
}
a:visited {
  color: rgb(117.37, 21.34, 143.56);
}
a:focus {
  color: rgb(1.0425, 129.3030952381, 235.2575);
}
a:hover {
  color: rgb(1.0425, 129.3030952381, 235.2575);
}
a:active {
  color: rgb(0.705, 87.4423809524, 159.095);
}

/* TODO temporary. Remember to also remove tabindex=-1 from post.html */
article {
  outline: none;
}

.basic-alignment {
  margin-top: 0.5rem;
}
.basic-alignment.left {
  float: left;
  margin-right: 1rem;
}
.basic-alignment.right {
  float: right;
  margin-left: 1rem;
}

.link-btn {
  padding: 0.8rem 1rem;
  margin: 3rem 0;
}

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

.baseline {
  position: relative;
}

.baseline:after {
  position: absolute;
  width: auto;
  height: auto;
  z-index: 9999;
  content: "";
  display: block;
  pointer-events: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.2) 1px, transparent 1px);
  background-size: auto 33px;
}

.baseline:active:after {
  background: none;
}

body > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-bottom: 2px solid rgba(170, 170, 170, 0.5);
  max-width: 640px;
  padding: 0.6rem 0;
  margin: auto;
  max-height: 6rem; /* 132px. Just forcing the browser to not render subpixel. */
}
body > header a:visited {
  color: inherit;
}
@media (min-width: 680px) {
  body > header {
    padding-top: 2.1rem;
  }
}

@media (min-width: 365px) {
  body > header > a {
    font-size: 1.4rem;
  }
}
[title=Home] {
  font-weight: bold;
  letter-spacing: -1px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: #555;
}
[title=Home]:hover, [title=Home]:active {
  background: linear-gradient(90deg, rgb(0, 151, 255), rgb(119, 44, 196), rgb(212, 32, 42)) 0 0/300%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: move-bg 6s linear alternate infinite;
}

@keyframes move-bg {
  to {
    background-position: 100%;
  }
}
header nav {
  padding: 0.85rem 0;
  font-family: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
header nav ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
header nav li {
  display: inline-block;
}
header nav li + li {
  margin-top: 0;
  margin-left: 1rem;
}
header nav a {
  color: #666;
  text-decoration: none;
}
header nav a:hover {
  color: #000;
}

[aria-current=page] {
  font-weight: bold;
}

.blog-index .entry-title a,
.blog-index .entry-title a:hover,
.blog-index .entry-title a:visited {
  color: #555;
}
.blog-index .intro {
  font-size: 1rem;
  border: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: -1.5rem;
  padding: 0.75rem;
  text-align: center;
  font-style: normal;
  background: #fff;
  border-radius: 0.5rem;
  letter-spacing: -0.03px;
}
@media (min-width: 768px) {
  .blog-index .intro {
    margin-bottom: 0;
  }
}
.blog-index article + article {
  margin-top: 6rem;
}

.intro a {
  text-decoration: underline;
}

article blockquote {
  font-style: normal;
}

article small {
  opacity: 0.8;
}

article cite, article figcaption {
  opacity: 0.6;
  font-size: 60%;
}

article figcaption {
  text-align: center;
}

article header h1 {
  font-size: 2rem;
  color: #555;
}
article h1 a:not(:hover) {
  text-decoration: underline transparent;
}
article .meta {
  margin-bottom: 0.75rem;
}
article a {
  text-decoration: underline;
  transition: text-decoration 0.3s, text-underline-offset 0.3s;
}
article a:not(:hover) {
  text-underline-offset: 0.3em;
}
article a[href*="//"]:not([href*="simonewebdesign.it"])::after {
  background-color: var(--text-primary);
  content: "";
  display: inline-flex;
  height: 10px;
  margin-left: 0.15rem;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1.5 3.5v11h11V10H14v5c0 .5523-.4477 1-1 1H1c-.552284 0-1-.4477-1-1V3c0-.55228.447715-1 1-1h5v1.5H1.5Z' fill='%23FBFBFE'/%3e%3cpath d='M15.9217 1.17828 7.01473 10.0853 5.95407 9.02462 14.8611.117624l1.0606 1.060656Z' fill='%23FBFBFE'/%3e%3cpath d='M7.5 0H16v1.5H7.5V0Z' fill='%23FBFBFE'/%3e%3cpath d='M16 0v8.5h-1.5V-7e-8L16 0Z' fill='%23FBFBFE'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1.5 3.5v11h11V10H14v5c0 .5523-.4477 1-1 1H1c-.552284 0-1-.4477-1-1V3c0-.55228.447715-1 1-1h5v1.5H1.5Z' fill='%23FBFBFE'/%3e%3cpath d='M15.9217 1.17828 7.01473 10.0853 5.95407 9.02462 14.8611.117624l1.0606 1.060656Z' fill='%23FBFBFE'/%3e%3cpath d='M7.5 0H16v1.5H7.5V0Z' fill='%23FBFBFE'/%3e%3cpath d='M16 0v8.5h-1.5V-7e-8L16 0Z' fill='%23FBFBFE'/%3e%3c/svg%3e");
  -webkit-mask-size: cover;
  mask-size: cover;
  width: 10px;
}
article p {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.author {
  display: block;
}

.entry-content {
  margin: 1.5rem 0 3rem;
}
.entry-content > h2 > a,
.entry-content > h3 > a {
  text-decoration: none;
  color: #333;
}
.entry-content > h2 > a::before,
.entry-content > h3 > a::before {
  content: "§";
  position: absolute;
  margin-left: -0.5rem;
  opacity: 0;
  transition: all 0.3s;
  padding-right: 2rem;
}
.entry-content > h2 > a:hover::before,
.entry-content > h3 > a:hover::before {
  opacity: 1;
  color: inherit;
  margin-left: -1rem;
}
@media (min-width: 768px) {
  .entry-content > h2 > a:hover::before,
  .entry-content > h3 > a:hover::before {
    margin-left: -1.5rem;
  }
}

.related {
  margin-top: 2rem;
}
.related + h2 a {
  text-decoration: none;
}

.gh-link {
  font-family: "PT Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: block;
  margin-top: 3rem;
}

.gh-link svg {
  width: 24px;
  height: 24px;
  vertical-align: sub;
  padding-right: 0.5rem;
}

.article-cta {
  text-align: center;
  margin: 3rem 0 3.5rem 0;
  padding: 3rem 0 3.5rem 0;
  border-width: 0;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-style: dotted;
  border-color: rgba(170, 170, 170, 0.5);
}
.article-cta > h2 {
  margin-bottom: 0;
}
.article-cta > form {
  margin-bottom: 0.5rem;
}

[name=subscribe] {
  margin-top: 2rem;
}
[name=subscribe] input,
[name=subscribe] button {
  font-size: 1rem;
  padding: 0.6rem 0.5rem;
}
[name=subscribe] input {
  box-sizing: border-box;
  width: 50%;
  font-size: 1rem;
  border: 2px solid #dbdfe4;
  border-radius: 0.25em;
  outline: none;
  background-clip: padding-box;
}
[name=subscribe] input:focus {
  border-color: #268bd2;
}
[name=subscribe] ::placeholder {
  color: #687a86;
}
[name=subscribe] button {
  border-radius: 0.25em;
  color: white;
  padding-left: 1rem;
  padding-right: 1rem;
  box-shadow: none;
  background: rgba(88, 88, 88, 0.2);
  border: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}
[name=subscribe] button:active {
  box-shadow: inset 0 3px 6px rgb(26.2782258065, 96.122983871, 145.2217741935);
}
[name=subscribe] button:focus,
[name=subscribe] input:focus + button {
  background: #268bd2;
  border: 2px solid #268bd2;
}
@media (min-width: 500px) {
  [name=subscribe] input {
    width: 28%;
    margin-right: 2%;
  }
}

/**
 * Syntax highlighting styles
 */
.highlight {
  margin-left: auto;
  margin-right: auto;
  border-radius: 3px;
}
.highlight code {
  box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.25);
}
.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;
}

/* non highlighted code colors */
p code {
  font-size: 0.75rem;
  vertical-align: middle;
}

code span {
  font-size: 0.75rem;
  line-height: 1rem;
}

.applescript {
  white-space: pre-wrap;
}

.highlight table td.code {
  width: 100%;
}

.highlight .line-numbers {
  display: none;
  text-align: right;
  background: white !important;
  border-right: 1px solid rgb(249.9, 249.9, 249.9) !important;
  text-shadow: white 0 -1px;
  border-radius: 0;
}
.highlight .line-numbers span {
  color: #93a1a1 !important;
}

pre {
  background: #fff;
  border-radius: 0.4em;
  font-family: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace;
  border: 1px solid rgb(242.25, 242.25, 242.25);
  padding: 0.75rem 1rem;
  color: #586e75;
  overflow: auto;
}

h3.filename + pre {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

p code, li code {
  font-family: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace;
  display: inline-block;
  background: #fff;
  color: #555;
  box-shadow: 0 0 1px 1px #ddd;
  border-radius: 0.4rem;
  padding: 0 0.25rem;
  margin: -1px 0;
}
p pre code, li pre code {
  font-size: 1em !important;
  background: none;
  border: none;
}

.pre-code, .highlight code {
  font-family: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace;
  display: block;
  padding: 0.75rem;
  background: #fff !important;
  color: #586e75 !important;
  /* Comment */
  /* Comment.Multiline */
  /* Comment.Preproc */
  /* Comment.Single */
  /* Comment.Special */
  /* Error */
  /* Keyword */
  /* Operator */
  /* Operator */
  /* Operator.Word */
  /* Generic.Deleted */
  /* Generic.Deleted.Specific */
  /* Generic.Emph */
  /* Generic.Heading */
  /* Generic.Inserted */
  /* Generic.Inserted.Specific */
  /* Generic.Strong */
  /* Generic.Subheading */
  /* Keyword.Constant */
  /* Keyword.Declaration */
  /* Keyword.Pseudo */
  /* Keyword.Reserved */
  /* Keyword.Type */
  /* Name.Attribute */
  /* Name.Builtin */
  /* Name.Class */
  /* Name.Constant */
  /* Name.Exception */
  /* Name.Function */
  /* Name.Namespace */
  /* Name.Tag */
  /* Name.Variable.Global */
  /* Name.Variable.Instance */
  /* Name.Variable */
  /* Literal.Number.Float */
  /* Literal.Number */
  /* Literal.Number.Hex */
  /* Literal.Number.Integer */
  /* Literal.String */
  /* Literal.String.Doc */
  /* Literal.String.Double */
  /* Literal.String.Escape */
  /* Literal.String.Interpol */
  /* Literal.String.Regex */
  /* Literal.String.Single */
}
.pre-code span, .highlight code span {
  color: #586e75 !important;
}
.pre-code span, .highlight code span {
  font-style: normal !important;
  font-weight: normal !important;
}
.pre-code .c, .highlight code .c {
  color: #93a1a1 !important;
  font-style: italic !important;
}
.pre-code .cm, .highlight code .cm {
  color: #93a1a1 !important;
  font-style: italic !important;
}
.pre-code .cp, .highlight code .cp {
  color: #93a1a1 !important;
  font-style: italic !important;
}
.pre-code .c1, .highlight code .c1 {
  color: #93a1a1 !important;
  font-style: italic !important;
}
.pre-code .cs, .highlight code .cs {
  color: #93a1a1 !important;
  font-weight: bold !important;
  font-style: italic !important;
}
.pre-code .err, .highlight code .err {
  color: var(--solar-red) !important;
  background: none !important;
}
.pre-code .k, .highlight code .k {
  color: var(--solar-orange) !important;
}
.pre-code .o, .highlight code .o {
  color: #586e75 !important;
  font-weight: bold !important;
}
.pre-code .p, .highlight code .p {
  color: #586e75 !important;
}
.pre-code .ow, .highlight code .ow {
  color: var(--solar-cyan) !important;
  font-weight: bold !important;
}
.pre-code .gd, .highlight code .gd {
  color: #586e75 !important;
  background-color: rgb(229.75, 205.5, 195.5) !important;
  display: inline-block;
}
.pre-code .gd .x, .highlight code .gd .x {
  color: #586e75 !important;
  background-color: rgb(219.65, 185.7, 171.7) !important;
  display: inline-block;
}
.pre-code .ge, .highlight code .ge {
  color: #586e75 !important;
  font-style: italic !important;
}
.pre-code .gh, .highlight code .gh {
  color: #93a1a1 !important;
}
.pre-code .gi, .highlight code .gi {
  color: #586e75 !important;
  background-color: rgb(220.4, 222.8, 204) !important;
  display: inline-block;
}
.pre-code .gi .x, .highlight code .gi .x {
  color: #586e75 !important;
  background-color: rgb(185.8, 190.6, 153) !important;
  display: inline-block;
}
.pre-code .gs, .highlight code .gs {
  color: #586e75 !important;
  font-weight: bold !important;
}
.pre-code .gu, .highlight code .gu {
  color: var(--solar-violet) !important;
}
.pre-code .kc, .highlight code .kc {
  color: var(--solar-green) !important;
  font-weight: bold !important;
}
.pre-code .kd, .highlight code .kd {
  color: var(--solar-blue) !important;
}
.pre-code .kp, .highlight code .kp {
  color: var(--solar-orange) !important;
  font-weight: bold !important;
}
.pre-code .kr, .highlight code .kr {
  color: var(--solar-magenta) !important;
  font-weight: bold !important;
}
.pre-code .kt, .highlight code .kt {
  color: var(--solar-cyan) !important;
}
.pre-code .n, .highlight code .n {
  color: var(--solar-blue) !important;
}
.pre-code .na, .highlight code .na {
  color: var(--solar-blue) !important;
}
.pre-code .nb, .highlight code .nb {
  color: var(--solar-green) !important;
}
.pre-code .nc, .highlight code .nc {
  color: var(--solar-magenta) !important;
}
.pre-code .no, .highlight code .no {
  color: var(--solar-yellow) !important;
}
.pre-code .nl, .highlight code .nl {
  color: var(--solar-green) !important;
}
.pre-code .ne, .highlight code .ne {
  color: var(--solar-blue) !important;
  font-weight: bold !important;
}
.pre-code .nf, .highlight code .nf {
  color: var(--solar-blue) !important;
  font-weight: bold !important;
}
.pre-code .nn, .highlight code .nn {
  color: var(--solar-yellow) !important;
}
.pre-code .nt, .highlight code .nt {
  color: var(--solar-blue) !important;
  font-weight: bold !important;
}
.pre-code .nx, .highlight code .nx {
  color: var(--solar-yellow) !important;
}
.pre-code .vg, .highlight code .vg {
  color: var(--solar-blue) !important;
}
.pre-code .vi, .highlight code .vi {
  color: var(--solar-blue) !important;
}
.pre-code .nv, .highlight code .nv {
  color: var(--solar-blue) !important;
}
.pre-code .mf, .highlight code .mf {
  color: var(--solar-cyan) !important;
}
.pre-code .m, .highlight code .m {
  color: var(--solar-cyan) !important;
}
.pre-code .mh, .highlight code .mh {
  color: var(--solar-cyan) !important;
}
.pre-code .mi, .highlight code .mi {
  color: var(--solar-cyan) !important;
}
.pre-code .s, .highlight code .s {
  color: var(--solar-cyan) !important;
}
.pre-code .sd, .highlight code .sd {
  color: var(--solar-cyan) !important;
}
.pre-code .s2, .highlight code .s2 {
  color: var(--solar-cyan) !important;
}
.pre-code .se, .highlight code .se {
  color: var(--solar-red) !important;
}
.pre-code .si, .highlight code .si {
  color: var(--solar-blue) !important;
}
.pre-code .sr, .highlight code .sr {
  color: var(--solar-cyan) !important;
}
.pre-code .s1, .highlight code .s1 {
  color: var(--solar-cyan) !important;
}
.pre-code div .gd, .highlight code div .gd, .pre-code div .gd .x, .highlight code div .gd .x, .pre-code div .gi, .highlight code div .gi, .pre-code div .gi .x, .highlight code div .gi .x {
  display: inline-block;
  width: 100%;
}

.highlight {
  margin-bottom: 1.875rem;
  background: #fff;
  overflow-y: hidden;
  overflow-x: auto;
}
.highlight pre {
  background: none;
  border-radius: 0;
  border: none;
  padding: 0;
  margin: 0;
}

.highlighter-rouge + p {
  margin-top: -0.375rem; /* a quarter of the baseline, which is 33px */
}

@media (min-width: 768px) {
  code,
  .highlight code {
    overflow: hidden;
  }
  div.highlighter-rouge:hover {
    width: min-content;
    min-width: 100%;
  }
}
.highlight code {
  background: #000;
  text-align: left;
  font-size: 0.75rem;
}

.footer-default {
  text-align: center;
  margin: 2rem 0;
}
.footer-default a {
  text-decoration: none;
}
.footer-default svg {
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.9;
  height: 3rem;
}
.footer-default :hover svg {
  transform: translateY(-3px) scale(1.2);
  opacity: 1;
}
.footer-default :hover svg:hover {
  transform: translateY(-3px) scale(1.4);
}

.mastodon-link:hover svg {
  transform: translateY(-3px);
}

.github-link svg {
  vertical-align: super;
}

.footer-social {
  max-width: 720px;
  margin: 3rem auto 2rem auto;
  display: flex;
  justify-content: center;
}
@media (min-width: 480px) {
  .footer-social {
    gap: 1.25rem;
  }
}

.footer-thin {
  margin: 0 auto;
}

.footer-thin .footer-social {
  clear: both;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text-primary: #e8e6e3;
  }
  html,
  pre,
  p code,
  li code {
    background: #181a1b !important;
    color: #e8e6e3;
  }
  h1,
  .entry-title,
  .blog-archives a {
    color: #c9c5be;
  }
  .entry-title a {
    color: inherit !important;
  }
  .entry-content > h2 > a,
  .entry-content > h3 > a {
    color: #c9c5be;
  }
  a {
    color: #7abbeb;
  }
  a:visited {
    color: #d683ed;
  }
  a:focus {
    color: #40acfe;
  }
  a:hover {
    color: #40acfe;
  }
  a:active {
    color: #6dc0fe;
  }
  time {
    color: #aaa;
  }
  header nav {
    background: rgba(24, 26, 27, 0.95);
  }
  body > header a,
  header nav a,
  #blog-archives article a {
    color: #c9c5be !important; /* important needed because pseudo-classes (:hover) have specificity of 10 */
  }
  body > header a:hover {
    color: #fff !important;
  }
  p code,
  li code {
    box-shadow: 0 0 1px 1px #444;
  }
  [title=Home] {
    background: linear-gradient(90deg, #7abbeb, #d683ed) 0 0/100% 100%;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }
  .baseline:after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: auto 33px;
  }
  #blog-archives article {
    border-bottom: 1px dotted #444 !important;
  }
  pre,
  p code,
  li code,
  div.category-index article + article h1 {
    border-color: #3a3a3a;
  }
  .highlight {
    background-color: #0e1010;
    border-color: #2f2f2f !important;
  }
  .highlight code {
    background-color: #0e1010 !important;
  }
  .about-intro picture {
    background-color: rgba(145, 145, 145, 0.1) !important;
  }
  .blog-index .intro {
    background: #111;
  }
}

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