@font-face {
    font-family: 'Anthropic Sans';
    src: url('../fonts/anthropic-sans-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
  }
@font-face {
    font-family: 'tewi';
    src: url('../fonts/tewi.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
  }
@font-face {
    font-family: 'ChronoType';
    src: url('../fonts/ChronoType.woff') format('woff');
    font-weight: 400;
    font-display: swap;
  }
@font-face {
    font-family: 'NDS12';
    src: url('../fonts/NDS12.woff') format('woff');
    font-weight: 400;
    font-display: swap;
  }
@font-face {
    font-family: 'HeinzHeinrich';
    src: url('../fonts/HeinzHeinrich-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
  }

  :root {
    --white: #ececf1;
    --gray: #8b8b96;
    --red: #8b0101;
  }
  * { box-sizing: border-box; }
  html, body {
    margin: 0;
    padding: 0;
    background: #000;
    color: var(--white);
    font-family: 'Anthropic Sans', sans-serif;
    height: 100%;
  }

  #bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
    background: #000;
  }
  #fx {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    display: none;
  }
  #fxToggle {
    display: block;
    position: relative;
    z-index: 1;
    margin: 0 auto 0.6em;
    background: transparent;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    font-family: 'tewi', ui-monospace, Menlo, Consolas, monospace;
    font-size: 1rem;
    color: var(--gray);
    opacity: 0.85;
  }
  #fxToggle:hover {
    color: var(--red);
    opacity: 1;
  }

  .site {
    position: relative;
    z-index: 1;
  }
