/*# sourceMappingURL=core.7060223d14999899.css.map */
body {
  --background: #ffffff;
  --background-alpha: rgba(255, 255, 255, 0.87);
  --foreground: #171717;
  --blue: #0d47a1;
  --magenta: #8d3996;
  --is-mobile: false;
}
@media (max-width: 767px) {
  body {
    --is-mobile: true;
  }
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme-override]) body {
    --background: #171717;
    --background-alpha: rgba(23, 23, 23, 0.87);
    --foreground: rgba(255, 255, 255, 0.8784313725);
    --blue: #56bbf1;
    --magenta: #f287ff;
  }
}
:root[data-theme-override=dark] body {
  --background: #171717;
  --background-alpha: rgba(23, 23, 23, 0.87);
  --foreground: rgba(255, 255, 255, 0.8784313725);
  --blue: #56bbf1;
  --magenta: #f287ff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter;
  background-color: var(--background);
  color: var(--foreground);
  max-width: 680px;
  margin: auto;
  word-wrap: break-word;
  position: relative;
}
@media (max-width: 767px) {
  body {
    padding: 0 24px;
  }
}
body::after {
  content: "";
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--background-alpha);
  backdrop-filter: blur(3px);
  mask-image: black;
  -webkit-mask-image: black;
}

#svg-filters {
  position: fixed;
}

@media (max-width: 767px) {
  .if-not-mobile {
    display: none;
  }
}
@media (min-width: 768px) {
  .if-mobile {
    display: none;
  }
}
.background {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.background .square {
  position: fixed;
  height: 16px;
  width: 16px;
  animation-duration: 10s;
  animation-timing-function: linear;
  background-color: var(--square-color, var(--blue));
  opacity: 75%;
}
.background .square::before {
  content: "";
  display: block;
  height: 16px;
  width: 128px;
  position: relative;
}
.background .square.left-to-right {
  animation-name: square-left-to-right;
}
.background .square.left-to-right::before {
  background: linear-gradient(to right, var(--background), var(--square-color, var(--blue)));
  height: 16px;
  width: 128px;
  left: -128px;
}
@keyframes square-left-to-right {
  from {
    left: -16px;
  }
  to {
    left: calc(100% + 16px + 128px);
  }
}
.background .square.right-to-left {
  animation-name: square-right-to-left;
}
.background .square.right-to-left::before {
  background: linear-gradient(to left, var(--background), var(--square-color, var(--blue)));
  height: 16px;
  width: 128px;
  right: -16px;
}
@keyframes square-right-to-left {
  from {
    right: -16px;
  }
  to {
    right: calc(100% + 16px + 128px);
  }
}
.background .square.top-to-bottom {
  animation-name: square-top-to-bottom;
}
.background .square.top-to-bottom::before {
  background: linear-gradient(to bottom, var(--background), var(--square-color, var(--blue)));
  height: 128px;
  width: 16px;
  top: -128px;
}
@keyframes square-top-to-bottom {
  from {
    top: -16px;
  }
  to {
    top: calc(100% + 16px + 128px);
  }
}
.background .square.bottom-to-top {
  animation-name: square-bottom-to-top;
}
.background .square.bottom-to-top::before {
  background: linear-gradient(to top, var(--background), var(--square-color, var(--blue)));
  height: 128px;
  width: 16px;
  bottom: -16px;
}
@keyframes square-bottom-to-top {
  from {
    bottom: -16px;
  }
  to {
    bottom: calc(100% + 16px + 128px);
  }
}

.loading {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  width: 100%;
}
.page-outer:not(.initial) > .loading {
  transition: opacity 0.2s ease;
}

.loading .circle {
  display: inline-block;
  background-color: var(--circle-color);
  border: 1px solid var(--circle-color);
  border-radius: 50%;
}
.loading .large-circle {
  --circle-color: var(--blue);
  margin: 0 20px;
  height: 50px;
  width: 50px;
  animation: loading 2s infinite;
}
.loading .small-circle {
  --circle-color: var(--magenta);
  height: 25px;
  width: 25px;
}
.loading .left-circle {
  animation: left-movement 2s infinite;
}
.loading .right-circle {
  animation: right-movement 2s infinite;
  margin-top: -27px;
}

.loading-active {
  opacity: 1;
}
.loading-active + .page-content {
  opacity: 0;
  height: 0;
  overflow: hidden;
}
@keyframes loading {
  0% {
    transform: translateY(100px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100px);
  }
}
@keyframes left-movement {
  0% {
    transform: rotate(180deg) translateY(50px) rotate(180deg);
  }
  50% {
    transform: rotate(0deg) translateY(50px) rotate(0deg);
  }
  100% {
    transform: rotate(180deg) translateY(50px) rotate(180deg);
  }
}
@keyframes right-movement {
  0% {
    transform: rotate(0deg) translateY(-50px) rotate(0deg);
  }
  50% {
    transform: rotate(180deg) translateY(-50px) rotate(180deg);
  }
  100% {
    transform: rotate(0deg) translateY(-50px) rotate(0deg);
  }
}

nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-color: var(--foreground);
  border-style: solid;
  border-width: 0;
  border-bottom-width: 2px;
}

.page-outer {
  position: relative;
  width: 100%;
}
.page-outer:not(.initial) > .page-content {
  transition: opacity 0.2s linear;
}
.page-outer .page-content {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.2;
}

.site-title {
  font-family: "Audiowide", sans-serif;
  padding: 18px;
  font-size: 48px;
}

#settings {
  font-family: "JetBrains Mono", monospace;
  position: fixed;
  right: 0;
  top: 0;
  background-color: var(--background);
  padding: 16px 16px 8px 8px;
  margin: -8px -8px 0 0;
  border-left: solid 1px var(--foreground);
  border-bottom: solid 1px var(--foreground);
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
#settings .toggle {
  padding: 0;
  background: none;
  border: none;
  width: 24px;
  height: 24px;
}
#settings .toggle:hover {
  cursor: pointer;
}
@keyframes settings-open {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#settings .toggle.animate-open {
  animation: settings-open 0.75s ease-in-out;
}
@keyframes settings-close {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
#settings .toggle.animate-close {
  animation: settings-close 0.75s ease-in-out;
}
#settings .toggle .icon {
  width: 24px;
  height: 24px;
}
@media (prefers-color-scheme: light) {
  :root:not([data-theme-override]) #settings .toggle .icon {
    filter: url(#light-svg);
  }
}
:root[data-theme-override=light] #settings .toggle .icon {
  filter: url(#light-svg);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme-override]) #settings .toggle .icon {
    filter: url(#dark-svg);
  }
}
:root[data-theme-override=dark] #settings .toggle .icon {
  filter: url(#dark-svg);
}

#settings .settings-panel {
  display: none;
}
#settings .settings-panel > * {
  margin: 8px;
}
#settings .settings-panel h4 {
  font-family: "Audiowide", sans-serif;
  margin: 0 0 4px 0;
}
#settings .settings-panel .settings-row {
  display: flex;
  align-items: center;
  margin-left: 8px;
}
#settings .settings-panel .settings-row input {
  margin: 0;
}
#settings .settings-panel .settings-row label {
  padding-left: 8px;
}
#settings.expanded .settings-panel {
  display: flex;
  flex-direction: column;
  color: var(--foreground);
  padding-right: 8px;
}

.post-title {
  line-height: 1.2;
  margin: 0;
}

.post-section-header {
  margin: 24px 0 12px 0;
}

.post-subheader {
  font-family: "JetBrains Mono", monospace;
}
.post-subheader .post-tags {
  margin: 4px 0;
}

.post-preview {
  margin-top: 18px;
}
.post-preview .post-read-more {
  font-family: "JetBrains Mono", monospace;
}

.post-preview-divider {
  padding-top: 12px;
  border-bottom: 1px solid var(--foreground);
}

#hyvor-talk-view {
  padding-top: 32px;
}
#hyvor-talk-view hyvor-talk-comments {
  --ht-color-accent: var(--foreground);
  --ht-color-accent-text: var(--background);
  --ht-color-box: #ffffff;
  --ht-color-box-text: #171717;
  --ht-color-box-text-light: #787878;
  --ht-color-box-secondary: #ffffff;
  --ht-color-box-secondary-text: #171717;
}

.admonition {
  display: inline-block;
}
.admonition .admonition-name {
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 4px;
}
.admonition.admonition-warning .admonition-name {
  color: var(--magenta);
}
.admonition .admonition-body {
  padding-left: 16px;
}
.admonition {
  margin: 12px 0;
}

.quoteblock {
  border-left: solid var(--foreground) 2px;
}

.strike {
  text-decoration: line-through;
}

.paragraph p {
  margin: 12px 0;
}

table.tableblock {
  border-collapse: collapse;
}
table.tableblock thead {
  border-bottom: 1px solid var(--foreground);
}
table.tableblock th,
table.tableblock td {
  padding: 12px;
}
table.tableblock tr:not(:last-child) {
  border-bottom: 0.5px solid var(--foreground);
}
table.tableblock p {
  margin: 0;
}

a {
  color: var(--blue);
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: "JetBrains Mono", monospace;
}

h1 {
  font-weight: 500;
}

h2,
h3,
h4 {
  font-weight: 400;
}

@media (min-width: 768px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 18px;
  }
}
pre {
  border: 1px solid var(--foreground);
  font-family: "JetBrains Mono", monospace;
  overflow-y: auto;
  padding: 16px;
}