/* ns-hugo-vars:hugo:vars */
:root {
  --accent_color: #FFA500;
  --bg_color: #FFFFFF;
  --bg_image: none;
  --font_family:
    system-ui,
    -apple-system,
    sans-serif;
  --paper_img: none;
  --site_max_width: 864px;
  --text_color: #000000;
}

/* <stdin> */
html,
body {
  scrollbar-width: none;
  -ms-overflow-style: none;
  height: 100%;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
}
body {
  background-color: var(--bg_color);
  color: var(--text_color);
  font-family: var(--font_family);
  max-width: var(--site_max_width);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: var(--bg_image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background: var(--paper_img) repeat;
  mix-blend-mode: soft-light;
  opacity: 0.85;
}
a {
  color: var(--accent_color);
  transition: color 0.2s ease-in-out;
}
a:hover {
  color: color-mix(in srgb, var(--accent_color) 70%, transparent);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background:
    radial-gradient(
      ellipse farthest-corner,
      transparent 50%,
      rgba(0, 0, 0, 0.3) 150%);
  pointer-events: none;
  z-index: 110;
}
.site-body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  width: 100%;
  max-width: var(--site_max_width);
  margin-left: auto;
  margin-right: auto;
}
