/* background.css */

/* Ensure the body allows vertical scrolling */
body {
  margin: 0;
  padding: 0;
  background-color: black; /* Fallback background color */
}

/* Style for the starfield canvas */
#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Places the canvas behind all other content */
  pointer-events: none; /* Ensures canvas doesn't interfere with page interaction */
}
