/* style.css */

html, body {
  background-color: black;
  height: 100%;
}

body {
  margin: 0;
  display: flex;

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

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

div {
  position: absolute;
}

p {
  text-align: center;
  color: #aaaaaa;
  font-family: "Courier New";
  margin: 0;
}

#sketchTitle {
  font-size: large;
}

#sketchSubtitle, #loadingProgress {
  font-size: small;
}

#progress {
  display: none;
  font-size: large;
  top: 10pt;
  /* left: 50%; */
}