/* animationimage.css */

/* Stretch canvas behind everything */
#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none; /* allows clicks through the canvas */
}

/* Ensure main content is on top */
nav, .row, .logo, .main-menu, .column {
  position: relative;
  z-index: 10;
}

