html, body {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center; /* Horizontal center */
  align-items: center;     /* Vertical center */
  background-color: black; /* Optional: sets page background */
}

canvas {
  display: block; /* Removes bottom margin/scrollbar issues */
}
