@layer base {
  body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    background: oklch(100% 0 0);
    color: oklch(10% 0 0);
    interpolate-size: allow-keywords;
    line-height: 1.375;
    max-inline-size: 100vw;
    scroll-behavior: auto;
    text-rendering: optimizeLegibility;
    text-size-adjust: none;
  }

  :where(ul, ol) {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  :where(button, [type=submit]) {
    background-color: oklch(10% 0 0);
    color: oklch(100% 0 0);
    border: none;
    padding: var(--block-space-half) var(--inline-space);

    &:where(:focus-visible) {
      outline: 2px solid oklch(10% 0 0);
      outline-offset: 2px;
    }
  }
}