body {
  background-color: black;
  margin: 0;
  display: flex;

  /* This centers our sketch horizontally. */
  justify-content: center;

  /* This centers our sketch vertically. */
  align-items: center;
}
canvas {
  width: 100vw;
  height: 100vh;
  display: block;
}