html, body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  background-color: #282828;

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

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

canvas {
  display: block;
}

.settings-panel > * {
  font-size: 20px;
  font-family: 'VT323-Regular';
  color: white;
  padding: 5px;
  margin-top: 10px;
}