html, body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: black;
}

body {
  margin: 0;
  display: flex;

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

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

canvas {
  display: block;
}
input {
  display: block;
  position: absolute;
  margin: 0;
  left: 500px;
  top: 400px;
  color: white;
  background-color: black;
  border: 1px solid grey;
  width: 50px;
  height: 20px;
}
