/* Make the canvas fill the entire viewport */
html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #0d0d0d;
  height: 100%;
  width: 100%;
}

canvas {
  display: block;
}

/* Heading styles removed as the h1 element is removed */