html, body {
  margin: 0;
  padding: 0;
  height: 100%; /* Ensure body and html fill the screen height */
}

body {
  display: flex;
  justify-content: center; /* Horizontally center the canvas */
  align-items: center; /* Vertically center the canvas */
}

canvas {
  display: block;
}