html {
  background: var(--color-white);
  font-size: 16px;
  min-height: -webkit-fill-available;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--font-size) * 3.525);
}

body {
  background: var(--color-white);
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  font-family: 'Moniker', Sans-Serif;
  font-feature-settings: 'case', 'liga';
  font-size: var(--font-size);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.0125em;
  line-height: var(--line-height);
  min-height: 100vh;
  -webkit-tap-highlight-color: rgba(var(--rgb-black), 0);
  text-rendering: optimizeLegibility;
}

a {
  color: var(--color-blurple);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.09em;
}

b,
strong {
  font-weight: 700;
}

i,
em {
  font-style: italic;
}

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

video::cue {
  font-family: 'Moniker', Sans-Serif;
  font-feature-settings: 'case', 'liga';
  font-size: var(--font-size-small);
  font-weight: 500;
  letter-spacing: -0.0125em;
  line-height: 1;
}

.handwritten {
  font-family: 'Shantell Sans', Sans-Serif;
  font-style: italic;
  font-weight: inherit;
  line-height: 1;
}

.rule {
  background: url(/assets/images/general/rule.svg) center center / auto 0.4em no-repeat;
  height: var(--space-xxxx-large);
  width: 100%;
}

@supports(-webkit-touch-callout: none) {

  body {
    min-height: -webkit-fill-available;
  }

}

@media(min-width: 64em) {

  html {
    scroll-padding-top: var(--font-size);
  }

}

@media(hover: hover) {

  a {
    transition: color var(--transition);
  }

  a:focus,
  a:hover {
    color: var(--color-black);
  }

}
