<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

:where(html)  {
  background: var(--main-bg);
  color: var(--main-color);
  /* font-size: clamp(90%, calc(16/1250*100vw), 100%); */
  word-break: normal;
  overflow-wrap: anywhere;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
  text-size-adjust: 100%;
  scroll-behavior: auto;
  line-break: strict;
  hyphens: auto;
}
/* @media (max-width: 1024px) {
  :where(html)  {
      font-size: 100%;
  }
} */
body {
  font-family: var(--font-family);
  font-feature-settings : "palt";
  text-align: center;
  line-height: 1;
}
:where(body, div, section, header, footer, nav, article, aside, main, dl, ul, p, a, :after, :before) {
  backface-visibility: hidden;
}
a {
  color: currentColor;
  border: 0;
  background-color: transparent;
  text-decoration: none;
  text-underline-offset: 0.8ex;
}
a:hover,
a:active {
  outline: 0;
}
:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}
:where(img) {
  border: 0;
  vertical-align: bottom;
  line-height: 0px;
  width: 100%;
  height: auto;
}
:where(svg) {
  max-width: 100%;
  overflow: inherit;
  fill: currentColor;
}
:where(img[src$=".svg"]) {
  max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: inherit;
  line-height: 1;
  text-wrap: initial;
}
:where(em, strong) {
  font-weight: inherit;
  font-style: normal;
}
:where(small) {
  font-size: inherit;
}
:where(address) {
  font-style: normal;
}
:where(button, input, select, textarea) {
  background-color: transparent;
  border-style: none;
  border-radius: 0;
  font: inherit;
}
:where(button) {
  touch-action: manipulation;
}

:where(a, input[type="button"], input[type="submit"]) {
  -webkit-tap-highlight-color: var(--tap-highlight-color);
}

:focus:not(:focus-visible) {
	outline: 0;
}

*::selection {
  background-color: var(--selection-color);
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after,
  ::backdrop {
    background-attachment: scroll !important;
    transition-delay: 0s !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}</pre></body></html>