/* Background container */
.mv-background {
  width: 100%;
  height: 100vh;       /* full screen */
  position: fixed;     /* stay behind content while scrolling */
  top: 0;
  left: 0;
  overflow: hidden;
  background-color: #16151d;
  /* Put the background behind page content and avoid intercepting clicks */
  z-index: -1;         /* behind everything */
  pointer-events: none;
}

/* Canvas for particles */
#mv-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
