
html, body {
    height: 100%;
  }
  
  body {
    margin: 0;
    display: flex;
  
    /* This centers our sketch horizontally. */
    justify-content: center;
    flex-flow: column wrap;
    /* This centers our sketch vertically. */
    align-items: center;
  }

