html, body {
  margin: 0;
  padding: 0;
  background-color: rgb(49, 49, 49);
  height: 100%;
  display: flex;
    /* This centers our sketch horizontally. */
    justify-content: center;
    /* This centers our sketch vertically. */
    align-items: center;
}
canvas {
  display: block;
}
