/* ==========================================================================
   bg-swoop — animated background swoop
   Entirely self-contained: delete the <link> to this file and the
   <script src="js/bg-swoop.js"> tag from index.html (or just set
   ENABLED = false at the top of bg-swoop.js) and it's gone with zero
   impact on the rest of the app.
   ========================================================================== */

#bg-swoop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  #bg-swoop { display: none; }
}
