html, body {
  height: 100%;
}
body {
  background-color: black;
  margin: 0;
  /* This centers our sketch horizontally. */
  display: flex;
  justify-content: center;
  /* This centers our sketch vertically. */
  align-items: center;
  /* leave it to hide the scrollbars */
  overflow: hidden;
}
