* style.css */

html, body {
  height: 100%;
  width: 100%;
}

body {
  display: flex;
  cursor: pointer;

  /* This centers our sketch horizontally. */
  justify-content: center;

  /* This centers our sketch vertically. */
  align-items: center;

  background-color: rgb(183, 28, 28)
}