body {
  color: white;
}

#controls-container {
    flex-grow: 1;
    margin-bottom: 40px;
}

#canvas-container {
  /* go to top left, no padding no nothing.
   * fixed position makes it not respond to scrolling etc */
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;

  /* take up full page space */
  width: 100%;
  height: 100%;

  /* live WAAAAY in the back to basically be a background */
  z-index: -1000;
}

#walker-canvas {
  width: 100%;
  height: 100%;
  background: black;
}