html,
body {
  background-color: black;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center; /* vertical */
  justify-content: center; /* horizontal */
}
canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}