/**
 * stickman-header.css
 * Companion styling for js/stickmanHeader.js. Scoped entirely to elements
 * the script creates/marks itself (.stickman-canvas-wrap) so this file is
 * a no-op on any page/instance that doesn't mount the animation. No custom
 * cursor — the nav/footer instances stay small background flourishes, the
 * real cursor (and its usual hover affordances) is left alone.
 */

.stickman-canvas-wrap {
  position:       absolute;
  inset:           0;
  z-index:         2;    /* above its own header/footer content by source
                            order (see markup) while pointer-events stay
                            off so it never blocks nav clicks */
  pointer-events:  none;
  overflow:        hidden;
}

.stickman-canvas-wrap canvas {
  position: absolute; /* several instances can share one mount (a small-crowd
                          effect, different seeds) by layering their canvases
                          instead of stacking in normal flow */
  inset:    0;
  display:  block;
  width:    100%;
  height:   100%;
}
