  * { margin: 0; padding: 0; box-sizing: border-box; }
  html, body { height: 100%; }
  body {
    background: #e8e0cf;
    color: #1b1812;
    font: 16px/1.6 Georgia, 'Times New Roman', serif;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
  }
  #s {
    position: fixed; inset: 0;
    width: 100%; height: 100%;
    display: block;
    touch-action: none;
    cursor: crosshair;
  }
  header, footer {
    position: fixed; left: 0; right: 0;
    text-align: center;
    pointer-events: none;
    z-index: 2;
  }
  header { top: max(7vh, env(safe-area-inset-top)); }
  h1 {
    font-weight: 400;
    font-size: clamp(15px, 3.4vw, 21px);
    letter-spacing: .34em;
    text-indent: .34em;
    text-transform: uppercase;
    color: rgba(27, 24, 18, .40);
  }
  footer { bottom: max(4vh, env(safe-area-inset-bottom)); }
  footer a {
    pointer-events: auto;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(27, 24, 18, .30);
    text-decoration: none;
  }
