html, body {
  margin: 0;
  padding: 0;
}

#sketch_container {
  display: flex;
  justify-content: center; /* horizontal */
  align-items: center;     /* vertical */
  height: 100vh;           /* full screen height */
}

canvas {
  display: block;
}
