/* node_modules/prism-themes/themes/prism-dracula.css */
code[class*=language-],
pre[class*=language-] {
  color: #f8f8f2;
  background: none;
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  font-family:
    Consolas,
    Monaco,
    "Andale Mono",
    "Ubuntu Mono",
    monospace;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
pre[class*=language-] {
  padding: 1em;
  margin: .5em 0;
  overflow: auto;
  border-radius: 0.3em;
}
:not(pre) > code[class*=language-],
pre[class*=language-] {
  background: #282a36;
}
:not(pre) > code[class*=language-] {
  padding: .1em;
  border-radius: .3em;
  white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #6272a4;
}
.token.punctuation {
  color: #f8f8f2;
}
.namespace {
  opacity: .7;
}
.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
  color: #ff79c6;
}
.token.boolean,
.token.number {
  color: #bd93f9;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #50fa7b;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
  color: #f8f8f2;
}
.token.atrule,
.token.attr-value,
.token.function,
.token.class-name {
  color: #f1fa8c;
}
.token.keyword {
  color: #8be9fd;
}
.token.regex,
.token.important {
  color: #ffb86c;
}
.token.important,
.token.bold {
  font-weight: bold;
}
.token.italic {
  font-style: italic;
}
.token.entity {
  cursor: help;
}

/* src/css/a4-page.css */
.a4Page {
  --flow: 1rem;
  color: var(--color-bluePen);
  font-family: var(--family-hand);
  background-image: url(/img/paper.png);
  background-repeat: repeat;
  padding: calc(var(--s-3) + 2vw);
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.3);
  font-size: 1.3em;
}
.a4Page a:not([class]) {
  font-weight: bold;
  text-decoration: none;
  color: inherit;
  text-decoration: underline;
  text-decoration-style: dotted;
}
.a4Page h1 {
  color: #4a4a4a;
  font-size: 2.5rem;
}

/* src/css/back-button.css */
.backButton {
  color: #4a4a4a;
  font-family: var(--family-main);
}
.backButton icon-layout span {
  text-decoration: underline solid #ccc;
}

/* src/css/big-header.css */
.bigHeader {
  position: relative;
  color: var(--color-light);
  background-color: var(--color-primary);
  margin-block-end: 7vw;
}
.bigHeader::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  bottom: -7vw;
  border-left: 100vw solid var(--color-primary);
  border-bottom: 7vw solid transparent;
  border-top: 1px solid var(--color-primary);
}
html body {
  background-image: url(/img/paper.png);
  background-repeat: repeat;
}

/* src/css/blog-post.css */
.blogPost {
  padding-block: var(--s3);
  font-size: 1.3em;
}

/* src/css/circle-button.css */
.circleButton {
  color: var(--color-light);
  cursor: pointer;
  line-height: 0;
  padding: 0.35em;
  border-radius: 100%;
  font-size: 1.5em;
  border: var(--s-5) solid rgba(255, 255, 255, 0.4);
  transition: transform 300ms ease;
}
.circleButton:hover {
  transform: scale(1.05);
}
.circleButton[data-accent=twitter] {
  background-color: #1ca1f2;
}
.circleButton[data-accent=github] {
  background-color: black;
}
.circleButton[data-accent=dockerhub] {
  background-color: #066da5;
}
.circleButton[data-accent=instagram] {
  background-image: linear-gradient(-135deg, #1400c8, #b900b4, #f50000);
}
.circleButton[data-accent=mastodon] {
  background-color: #595aff;
}
.circleButton[data-accent=scholar] {
  background-color: #4c90fe;
}
.circleButton[data-accent=strava] {
  background-color: #f55308;
}
.circleButton[data-accent=letterboxd] {
  background-color: #1f282f;
}
.circleButton[data-accent=rss] {
  background-color: #f89939;
}

/* src/css/globals.css */
html {
  font-family: var(--family-main);
  line-height: 1.4;
  color: var(--color-dark);
  font-size: 16px;
}
a {
  color: var(--color-anchor);
}
img {
  height: auto;
  max-width: 100%;
}
[aria-hidden=true] {
  display: none;
}
figure {
  max-width: 640px;
  margin: 2rem auto !important;
  text-align: center;
}
figcaption {
  font-style: italic;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #4a4a4a;
  font-weight: 900;
  line-height: 1.125;
}
pre {
  font-size: 1rem;
  border-left: var(--s-2) solid #209cee;
}
* + pre[class*=language-] {
  margin-top: var(--flow, 1em);
}
pre > code {
  font-size: 1em;
  background-color: unset;
  color: unset;
}
pre:has(code) {
  background-color: #353a43;
  color: #d6ecfc;
  padding: var(--s-1);
}
code {
  border-radius: 4px;
  padding: 0.1em 0.2em;
  margin: -0.1em 0;
  color: #353a43;
  background-color: #d6ecfc;
  font-size: 0.875em;
  font-weight: normal;
}
em {
  text-decoration: underline dashed #888;
}
blockquote {
  background-color: #f5f5f5;
  border-left: 5px solid #dbdbdb;
  padding: 1.25em 1.5em;
}
.flow > * + * {
  margin-top: var(--flow, 1em);
}
footer {
  font-family: var(--family-mono);
  font-size: 0.85em;
  text-align: center;
  color: #7a7a7a;
  background-image: url(/img/paper.png);
  background-repeat: repeat;
  border-bottom: var(--s-3) solid var(--color-primary);
  padding: var(--s4) 0 var(--s-1);
}
footer a:not([class]) {
  color: #363636 !important;
  text-decoration: underline;
  font-weight: bold;
}
reel-layout.imageGrid {
  background-color: #eeeeee;
  border-radius: var(--s0) var(--s0) 0.4rem 0.4rem;
  padding: var(--s0);
  --color-foreground: var(--color-berry);
  --color-background: #dddddd;
}
.imageGrid img,
.imageGrid picture {
  flex: 0 0 auto;
  width: 600px;
  max-width: unset;
}
.r0bBrand {
  transform: rotate(-10deg);
}
.postAlert {
  color: #4a4a4a;
  font-size: 3rem;
  text-align: center;
  text-transform: uppercase;
  border-top: 2px dashed #ccc;
  border-bottom: 2px dashed #ccc;
  margin-bottom: 3rem;
  padding: 0.8rem 0;
  font-weight: 900;
}
details {
  padding: 1em;
  border: 5px dashed #ddd;
  border-radius: 15px;
}
details summary {
  cursor: pointer;
  font-weight: bold;
}
code .title {
  font-size: 1em !important;
}
code .content {
  font-size: 1em !important;
}

/* src/css/home-page.css */
.homePage {
  padding-block-start: var(--s3);
}

/* src/css/nav-item.css */
.navItem {
  font-family: var(--family-alt);
  font-size: 1.05em;
  color: var(--color-light);
  text-shadow:
    -1px 1px 0 var(--color-dark),
    1px 1px 0 var(--color-dark),
    1px -1px 0 var(--color-dark),
    -1px -1px 0 var(--color-dark);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.navItem:hover {
  color: #ffdd57;
}

/* src/css/post-summary.css */
.postSummary {
  font-size: 1.25em;
  --flow: 0.5em;
}
.postSummary h2 {
}
.postSummary h2 svg {
  color: #aaa;
}
.postSummary p {
}
.postSummary time {
  display: block;
}

/* src/css/styles.css */
:root {
  --measure: 60ch;
  --family-main: system-ui, sans-serif;
  --family-alt:
    Nunito,
    system-ui,
    sans-serif;
  --family-hand:
    "Patrick Hand",
    Nunito,
    system-ui,
    sans-serif;
  --family-mono:
    ui-monospace,
    SFMono-Regular,
    Consolas,
    Liberation Mono,
    Menlo,
    Courier,
    monospace;
  --color-primary: #377c85;
  --color-magenta: #92374d;
  --color-berry: #8c5483;
  --color-liberty: #4a5899;
  --color-offBlue: #559cad;
  --color-silver: #c0b2aa;
  --color-deepKoamaru: #392b58;
  --color-bluePen: #00188a;
  --color-dark: #4a4a4a;
  --color-light: white;
  --color-anchor: #3273dc;
}
/*# sourceMappingURL=styles.css.map */
