* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  margin: 0;
  height: 100%;
  background-color: #000;
  overscroll-behavior: none;
}

#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#canvas-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}

#debug {
  position: fixed;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-family: 'Menlo', monospace;
  font-size: 18px;

  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}