/* galaxy.css — background starfield layer for the Editing Evolution LP.
   The canvas element is created by galaxy.js and prepended to <body>.
   It sits behind all page content and never intercepts input. */

#galaxy-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  pointer-events: none;
}
