html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  background-color: #fff;
  background-color: var(--background);
}

body::-webkit-scrollbar {
  width: 6px;
}

body {
  scrollbar-width: thin;
  scrollbar-color: rgba(41, 41, 41, 0.8) #fff;
  scrollbar-color: var(--color-80) var(--background);
  height: 100%;
}

body::-webkit-scrollbar-track {
  background: #fff;
  background: var(--background);
}

body::-webkit-scrollbar-thumb {
  background-color: rgba(41, 41, 41, 0.8);
  background-color: var(--color-80);
}

* {
  cursor: url(85ce6b40698af6265e75.svg), auto;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  border-style: solid;
  border-width: 0;
  border-color: currentColor;
  margin: 0;
  padding: 0;
}

img,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
}

img,
video {
  max-width: 100%;
  height: auto;
}

img {
  display: block;
  max-width: 100%;
}

hr {
  width: 100%;
  border: none;
  background: rgba(41, 41, 41, 0.1);
  background: var(--color-10);
  height: 1px;
  margin-top: 2rem;
}

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

ol {
  list-style-type: none;
  counter-reset: item;
  margin-top: 1rem;
}

ol > li {
  counter-increment: item;
  position: relative;
}

ol > li:last-child {
  padding-bottom: 0;
}

ol > li::before {
  content: "* 0" counter(item);
  font-weight: 600;
  margin-right: 0.7rem;
}

/* For numbers 10 and above, we don't need the leading zero */

ol > li:nth-child(n + 10)::before {
  content: "* " counter(item);
}

ol ol {
  list-style-type: lower-alpha;
}

ol a:hover {
  outline: 2px dashed rgb(0, 255, 25);
  outline: 2px dashed var(--accent-primary);
  outline-offset: 2px;
  -webkit-text-decoration: none;
  text-decoration: none;
}

ol > li::marker {
  font-weight: 600;
}

ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-top: 1rem;
}

b,
strong {
  font-weight: 600;
}

table {
  border-collapse: collapse;
  caption-side: bottom;
  overflow-x: auto;
  min-width: 100%;
  border: 1px solid rgba(41, 41, 41, 0.3);
  border: 1px solid var(--color-30);
  margin-top: 1rem;
}

table caption {
  margin-top: 1rem;
}

td,
th {
  border: 1px solid rgba(41, 41, 41, 0.3);
  border: 1px solid var(--color-30);
  padding: 0.5rem;
  text-align: left;
}

th {
  font-weight: 500;
}

td:only-child {
  text-align: center;
}

* + h1,
* + h2 {
  margin-top: 5rem;
}

* + h3,
* + h4,
* + h5 {
  margin-top: 2rem;
}

* + p {
  margin-top: 1.4rem;
}

h2 + p,
h3 + p,
h4 + p {
  margin-top: 1rem;
}

iframe,
audio,
video,
img {
  width: 100%;
  max-width: 100%;
  margin-top: 1rem;
}

blockquote {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-left: 1.6rem;
  border-left: 4px solid rgb(0, 255, 25);
  border-left: 4px solid var(--accent-primary);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.125rem;
  font-size: var(--text-lg);
  font-weight: 600;
}

code,
kbd {
  color: rgb(0, 10, 255);
  color: var(--accent-secondary);
  font-feature-settings: normal;
  background: #fff;
  font-size: 0.95rem;
}

pre {
  white-space: pre-wrap;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  font-size: 0.95rem;
  border: 1px solid rgba(41, 41, 41, 0.1);
  border: 1px solid var(--color-10);
  padding: 1rem;
  margin-top: 1rem;
  overflow: auto;
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(41, 41, 41, 0.8);
  scrollbar-color: var(--color-80);
}

pre::-webkit-scrollbar {
  width: 6px;
  height: 8px;
}

pre::-webkit-scrollbar-track {
  background: #fff;
  background: var(--background);
}

pre::-webkit-scrollbar-thumb {
  background-color: rgba(41, 41, 41, 0.8);
  background-color: var(--color-80);
}

pre,
code {
  font-family: "IBM Plex Sans", sans-serif;
}

pre code {
  background: transparent;
  padding: 0;
  margin: 0;
}

.dash-link a:hover {
  outline: 2px dashed rgb(0, 255, 25);
  outline: 2px dashed var(--accent-primary);
  outline-offset: 2px;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.dot {
  display: inline-block;
  flex: none;
  width: 0.7rem;
  height: 0.7rem;
  background: currentColor;
  border-radius: 100%;
  color: rgb(0, 255, 25);
  color: var(--accent-primary);
}

.kofi-button {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.5rem 0;
  transition: opacity 0.2s ease;
}

.kofi-button:hover {
  opacity: 0.9;
}

.kofi-button img {
  height: 32px;
  border: 0;
}

.padded-top {
  margin-top: 0.7rem;
}

.shimmer {
  position: relative;
  background: linear-gradient(90deg, #222 0%, #fff 20%, #222 40%);
  background: linear-gradient(90deg, #222 0%, #fff 20%, #222 40%);
  color: transparent;
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shine 7s linear infinite;
  will-change: background-position;
}

@media (prefers-reduced-motion: reduce) {

.shimmer {
    animation: none;
    background-position: center;
}
  }

@keyframes shine {
  from {
    background-position: 200% center;
  }
  to {
    background-position: -200% center;
  }
}

/* Skip link for keyboard users */

.skip-link {
  position: absolute;
  top: -50px; /* Off-screen by default */
  left: 10px;
  z-index: 100;
  padding: 8px 10px;
  background: #000;
  color: #fff;
  border: 2px solid #fff;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.skip-link:focus {
  top: 10px; /* Move into view when focused */
}

/* Hide content visually but keep it accessible to screen readers */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:root {
  --accent-primary: rgb(0, 255, 25);
  --accent-secondary: rgb(0, 10, 255);
  --accent-test: rgb(0, 10, 255, 0.1);
  --accent-tertiary: rgba(230, 230, 230, 1);
  --accent-quaternary: rgb(254, 1, 154);
  --background: #fff;
  --color: rgb(0, 0, 0);
  --color-90: rgb(117, 117, 117);
  --color-80: rgba(41, 41, 41, 0.8);
  --color-30: rgba(41, 41, 41, 0.3);
  --color-10: rgba(41, 41, 41, 0.1);
}

/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (https://dabblet.com)
 * @author Lea Verou
 */

code[class*="language-"],
pre[class*="language-"] {
  color: #abb2bf;
  background: none;
  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;
  hyphens: none;
}

pre[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection {
  text-shadow: none;
  background: #383e49;
}

pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection, code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
  text-shadow: none;
  background: #9aa2b1;
}

pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
  text-shadow: none;
  background: #9aa2b1;
}

@media print {
  code[class*="language-"],
  pre[class*="language-"] {
    text-shadow: none;
  }
}

/* Code blocks */

pre[class*="language-"] {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
  background: #282c34;
}

/* Inline code */

:not(pre) > code[class*="language-"] {
  padding: 0.1em;
  border-radius: 0.3em;
  white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #5c6370;
}

.token.punctuation {
  color: #abb2bf;
}

.token.selector,
.token.tag {
  color: #e06c75;
}

.token.property,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.attr-name,
.token.deleted {
  color: #d19a66;
}

.token.string,
.token.char,
.token.attr-value,
.token.builtin,
.token.inserted {
  color: #98c379;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #56b6c2;
}

.token.atrule,
.token.keyword {
  color: #c678dd;
}

.token.function {
  color: #61afef;
}

.token.regex,
.token.important,
.token.variable {
  color: #c678dd;
}

.token.important,
.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

pre.line-numbers {
  position: relative;
  padding-left: 3.8em;
  counter-reset: linenumber;
}

pre.line-numbers > code {
  position: relative;
}

.line-numbers .line-numbers-rows {
  position: absolute;
  pointer-events: none;
  top: 0;
  font-size: 100%;
  left: -3.8em;
  width: 3em;
  /* works for line-numbers below 1000 lines */
  letter-spacing: -1px;
  border-right: 0;

  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.line-numbers-rows > span {
  pointer-events: none;
  display: block;
  counter-increment: linenumber;
}

.line-numbers-rows > span:before {
  content: counter(linenumber);
  color: #5c6370;
  display: block;
  padding-right: 0.8em;
  text-align: right;
}

@font-face {
  font-family: "Maison Neue";
  src: url(3e0a37bc36e5a3325e58.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto Mono";
  src: url(535bc89d4af715503b01.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url(259154b3efafb53b8f45.ttf) format("ttf");
  font-weight: 400;
  font-style: normal;
}

:root {
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 5rem;
}

body {
  font-size: 1.125rem;
  font-size: var(--text-lg);
  line-height: 1.54;
  color: rgb(0, 0, 0);
  color: var(--color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga", "tnum", "case", "calt", "zero", "ss01", "locl", "calt";
  font-variant-ligatures: contextual;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
  font-family: "Roboto Mono", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  font-weight: 400;
  color: 1rem;
  color: var(--text-base);
  font-family: "Maison Neue", sans-serif;
}

h1 {
  font-size: 2.25rem;
  font-size: var(--text-4xl);
}

h2 {
  font-size: 1.875rem;
  font-size: var(--text-3xl);
}

h3 {
  font-size: 1.5rem;
  font-size: var(--text-2xl);
}

h4 {
  font-size: 1.25rem;
  font-size: var(--text-xl);
}

h5 {
  font-size: 1.125rem;
  font-size: var(--text-lg);
}

p {
  font-size: 1rem;
  font-size: var(--text-base);
}

.tags-list {
  margin-top: 1rem;
  margin-right: 0;
  margin-bottom: 1.6rem;
  margin-left: 0;
  font-size: 0.875rem;
  font-size: var(--text-sm);
  color: rgba(41, 41, 41, 0.8);
  color: var(--color-80);
  line-height: 1.5rem;
}

.tags-list a {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: rgba(41, 41, 41, 0.8);
  color: var(--color-80);
  transition: color 0.2s ease;
}

.tags-list a:hover {
  outline: 2px dashed rgb(0, 255, 25);
  outline: 2px dashed var(--accent-primary);
  outline-offset: 2px;
}

.post-list__wrapper {
  margin-top: 5rem;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.post-header h3 {
  margin: 0;
}

.post-list__heading {
  font-size: 1.25rem;
  font-size: var(--text-xl);
}

.post-list__subheading {
  color: rgba(41, 41, 41, 0.3);
  color: var(--color-30);
  font-size: 0.875rem;
  font-size: var(--text-sm);
}

.post-list__subheading a {
  color: rgba(41, 41, 41, 0.8);
  color: var(--color-80);
  transition: color 0.2s ease;
}

.post-list__subheading a:hover {
  outline: 2px dashed rgb(0, 255, 25);
  outline: 2px dashed var(--accent-primary);
  outline-offset: 2px;
}

/* Post list items */

.post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-list__item {
  display: flex;
  flex-direction: column;
  padding-top: 2.2rem;
  padding-right: 0;
  padding-bottom: 2rem;
  padding-left: 0;
  border-top: 1px solid rgba(230, 230, 230, 1);
  border-top: 1px solid var(--accent-tertiary);
}

.post-list__meta-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-size: var(--text-sm);
  color: rgb(117, 117, 117);
  color: var(--color-90);
  flex-wrap: wrap;
}

.post-list__featured-badge {
  text-transform: uppercase;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  color: var(--background);
  width: -moz-fit-content;
  width: fit-content;
  height: 1.4rem;
  width: 1.4rem;
}

.featured-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  position: relative;
  top: -0.135em;
}

.post-list__item:last-child {
  padding-bottom: 1rem;
}

.post-list__item--inner {
  display: flex;
  flex-direction: column;
}

/* Post titles */

.post-list__title {
  font-size: 1.25rem;
  font-size: var(--text-xl);
  margin: 1.3rem 0 0;
}

.post-list__title a {
  font-weight: normal;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: 1rem;
  color: var(--text-base);
}

.post-list__title a:hover {
  color: rgb(0, 255, 25);
  color: var(--accent-primary);
  -webkit-text-decoration: none;
  text-decoration: none;
}

/* Post metadata */

.post-list__meta {
  font-size: 0.875rem;
  font-size: var(--text-sm);
  color: rgb(117, 117, 117);
  color: var(--color-90);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Post tags */

.post-list__tags {
  font-size: 0.875rem;
  font-size: var(--text-sm);
  margin-top: 0.5rem;
  color: rgb(117, 117, 117);
  color: var(--color-90);
}

.post-list__tags a {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: rgb(117, 117, 117);
  color: var(--color-90);
  transition: color 0.2s ease;
}

.post-list__tags a:hover {
  outline: 2px dashed rgb(0, 255, 25);
  outline: 2px dashed var(--accent-primary);
  outline-offset: 2px;
}

/* Post content */

.post-list__intro p {
  padding-top: 0.5rem;
  padding-bottom: 1.7rem;
}

.post-list__excerpt {
  font-size: 0.875rem;
  font-size: var(--text-sm);
  margin-top: 0.65rem;
  line-height: 1.6;
  font-family: "IBM Plex Sans", sans-serif;
}

/* Call to action links */

.post-list__read-more {
  display: inline-block;
  font-size: 0.875rem;
  font-size: var(--text-sm);
  -webkit-text-decoration: none;
  text-decoration: none;
  margin-top: 1rem;
  transition: color 0.2s ease;
  width: -moz-fit-content;
  width: fit-content;
}

.post-list__read-more:hover::after {
  transform: translateX(4px);
}

.post-list__read-more:hover {
  outline: 2px dashed rgb(0, 255, 25);
  outline: 2px dashed var(--accent-primary);
  outline-offset: 2px;
}

.all-posts-link {
  display: block;
  margin: 2rem auto 0;
  font-size: 1rem;
  font-size: var(--text-base);
  -webkit-text-decoration: underline;
  text-decoration: underline;
  color: currentColor;
  text-align: center;
  transition: color 0.2s ease;
}

.all-posts-link:hover {
  outline: 2px dashed rgb(0, 255, 25);
  outline: 2px dashed var(--accent-primary);
  outline-offset: 2px;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.hero {
  display: flex;
  flex-direction: column;
}

.hero h1 {
  font-size: 1.875rem;
  font-size: var(--text-3xl);
}

.hero p {
  font-size: 1.5rem;
  font-size: var(--text-2xl);
  margin-top: 1rem;
}

.hero__social-links {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin-top: 2rem;
  text-transform: uppercase;
}

.hero__social-links > li {
  margin-right: 2rem;
  margin-top: 1rem;
  font-size: 1rem;
  font-size: var(--text-base);
}

.hero__social-links a {
  -webkit-text-decoration: none;
  text-decoration: none;
}

.hero__social-links a:hover {
  outline: 2px dashed rgb(0, 255, 25);
  outline: 2px dashed var(--accent-primary);
  outline-offset: 2px;
}

.header {
  max-width: none;
  width: 100%;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .header {
    margin-bottom: 2rem;
  }
}

.header__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 48.75rem;
  padding: 1rem;
  margin-top: 1rem;
  border-bottom: 1px solid var(--accent-primary-tertiary);
}

.site-title {
  font-size: 1.25rem;
  font-size: var(--text-xl);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.site-title a:hover {
  color: rgb(0, 255, 25);
  color: var(--accent-primary);
}

.site-title a {
  position: relative;
  display: inline-block;
  color: rgb(0, 0, 0);
  color: var(--color);
  -webkit-text-decoration: none;
  text-decoration: none;
}

.site-title a::after {
  content: "";
  position: absolute;
  top: 0;
  right: -15px;
  width: 10px;
  height: 100%;
  background-color: rgb(0, 255, 25);
  background-color: var(--accent-primary);
  animation: blink 1.5s step-end infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.nav__list {
  display: flex;
  justify-content: space-around;
  list-style: none;
  font-size: 1rem;
  font-size: var(--text-base);
  padding-bottom: 1.25rem;
}

.nav__list a {
  color: rgb(0, 0, 0);
  color: var(--color);
  margin-top: 1rem;
  margin-bottom: 1rem;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.nav__list a:hover {
  outline: 2px dashed rgb(0, 255, 25);
  outline: 2px dashed var(--accent-primary);
  outline-offset: 2px;
}

.nav__list li {
  margin-right: 1.5rem;
}

.nav__list li:last-child {
  margin-right: 0;
}

.footer {
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: none;
  width: 100%;
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 48.75rem;
  width: 100%;
  font-size: 0.875rem;
  font-size: var(--text-sm);
  border-top: 1px solid rgba(230, 230, 230, 1);
  border-top: 1px solid var(--accent-tertiary);
}

.footer__strapline {
  text-align: center;
  margin-top: 0.6rem;
}

.footer__social-links {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  text-transform: uppercase;
}

.footer__social-links > li {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-size: var(--text-sm);
}

.footer__attribution {
  font-size: 0.75rem;
  font-size: var(--text-xs);
  margin-top: 3.5rem;
}

.footer ul {
  list-style: none;
  display: flex;
}

.footer li {
  margin-right: 2rem;
}

.footer li:last-child {
  margin-right: 0;
}

.post {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 70ch;
  margin: 0 auto;
}

.post p {
  font-size: 1rem;
  font-size: var(--text-base);
  line-height: 1.65;
  font-family: "IBM Plex Sans", sans-serif;
}

.post > * + * {
  margin-top: 0.5rem;
}

.post__details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: rgba(41, 41, 41, 0.8);
  color: var(--color-80);
  font-size: 0.875rem;
  font-size: var(--text-sm);
  line-height: 1.4;
  font-feature-settings: "tnum" 1;
  margin-top: 0.7rem;
}

.post__details a:hover {
  outline: 2px dashed rgb(0, 255, 25);
  outline: 2px dashed var(--accent-primary);
  outline-offset: 2px;
}

.post__details > * + * {
  margin-left: 0.3rem;
}

.post__content {
  word-wrap: break-word;
  line-height: 1.6rem;
  letter-spacing: 0.01em;
  font-size: 0.875rem;
  font-size: var(--text-sm);
}

.post__content h2 {
  font-size: 1.7rem;
  margin-top: 1.75rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.post__content h3 {
  font-size: 1.5rem;
  margin-top: 1.75rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.post__content ul li {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-size: var(--text-base);
  padding-left: 0;
  text-indent: -1.2rem;
  padding-right: 0;
  margin-left: 1.5rem;
}

.post__content ol {
  padding-left: 1.5rem;
}

.post__content ol li {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-size: var(--text-base);
  padding-left: 0;
  text-indent: -2.65rem;
  padding-right: 0;
  margin-left: 1.5rem;
}

.post_content li a:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: rgb(0, 255, 25);
  color: var(--accent-primary);
}

.post__aside {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(41, 41, 41, 0.3);
  border-top: 1px solid var(--color-30);
}

.post__tags {
  color: rgba(41, 41, 41, 0.8);
  color: var(--color-80);
  font-size: 0.875rem;
  font-size: var(--text-sm);
  line-height: 1.6;
}

.post__tags * + * {
  margin-left: 1rem;
}

.post__tags a {
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post__tags a:hover {
  color: rgb(0, 255, 25);
  color: var(--accent-primary);
}

.post__np-icon {
  margin-left: 0;
  margin-top: 0.25rem;
}

.post__pagination {
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-size: var(--text-sm);
  line-height: 1.5;
}

.post__pagination > * {
  flex: 1;
}

.post__pagination > *:only-child {
  text-align: center;
  flex: 0 1 auto;
  margin: 0 auto;
}

.post__pagination a {
  display: flex;
  align-items: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: rgba(41, 41, 41, 0.8);
  color: var(--color-80);
  transition: color 0.2s ease;
}

.post__pagination a:last-child {
  justify-content: flex-end;
}

.post__pagination a:first-child {
  justify-content: flex-start;
}

.post__pagination a:hover {
  color: rgb(0, 255, 25);
  color: var(--accent-primary);
}

.post__pagination span {
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .post > * + * {
    margin-top: 1rem;
  }

  .post__pagination {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .post__pagination a {
    width: 100%;
  }

  .post__pagination a:first-child {
    margin-bottom: 0.5rem;
  }

  .post__details > span:has(a) {
    margin-left: 0;
    margin-top: 0.2rem;
    width: 100%;
  }
}

.about h1 {
  margin-bottom: 2rem;
  font-size: 1.875rem;
  font-size: var(--text-3xl);
}

.about img {
  border: 4px solid rgba(0, 0, 0, 0.7);
  border: 4px solid rgba(0, 0, 0, 70%);
  float: none;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
}

.about p {
  font-size: 1rem;
  font-size: var(--text-base);
  color: 1rem;
  color: var(--text-base);
}

@media (min-width: 35.9375em) {
  .about img {
    width: 15rem;
    float: right;
    margin-left: 4rem;
    margin-bottom: 2rem;
    margin-top: 0.4rem;
  }
}

.alias-card {
  background: #fff;
  background: var(--background);
  padding: 1.2rem 1.5rem;
  margin-top: 1.4rem;
  border: 2px solid rgb(0, 10, 255, 0.1);
  border: 2px solid var(--accent-test);
  display: flex;
  flex-direction: column;
}

.alias-card > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.alias-card h4 {
  font-size: 0.875rem;
  font-size: var(--text-sm);
  margin: 0 0 0.75rem 0;
  display: inline-block;
  background: rgb(0, 0, 0);
  background: var(--color);
  padding: 0.25rem 0.5rem;
  color: #fff;
  color: var(--background);
}

.alias-card p {
  margin-top: 0;
  font-size: 0.875rem;
  font-size: var(--text-sm);
}

.alias-card p:last-child {
  margin-bottom: 0;
}

.alias-card .category {
  display: inline-block;
  color: rgb(0, 10, 255);
  color: var(--accent-secondary);
  font-size: 0.6rem;
  padding-left: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-left: 2px solid rgb(0, 10, 255);
  border-left: 2px solid var(--accent-secondary);
}

.alias-card details {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  font-size: var(--text-sm);
  font-family: "Roboto Mono", sans-serif;
  font-size: 0.75rem;
  font-size: var(--text-xs);
}

.alias-card details p {
  font-family: "Roboto Mono", sans-serif;
  font-size: 0.75rem;
  font-size: var(--text-xs);
  margin-top: 0.35rem;
}

.alias-card summary {
  display: inline-block;
  color: rgb(0, 10, 255);
  color: var(--accent-secondary);
  font-weight: 500;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.strong {
  font-weight: 600;
}

.layout-wrapper {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 100%;
}

@media (max-width: 768px) {
  .layout-wrapper {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
  }
}

.main {
  display: flex;
  padding-bottom: 3rem;
  flex-direction: column;
  padding-left: 1rem;
  padding-right: 1rem;
  min-width: 0;
  max-width: 48.75rem;
  margin-left: auto;
  margin-right: auto;
}

