:root {
  color-scheme: dark;
  background: #000;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #000;
}

body {
  overscroll-behavior: none;
}

#galaxyCanvas {
  display: block;
  width: 100vw;
  height: 100vh;
  background: #000;
  touch-action: none;
  cursor: grab;
}

#galaxyCanvas:active {
  cursor: grabbing;
}
