html {
  margin: 0;
  padding: 0;
}

body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(195, 216, 197);
}

canvas {
  display: block;
}


#container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

#title {
  position: relative;
  top: 0;
  font-size: 64px;
  font-family: Arial, sans-serif;
  color: black;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px; /* Add spacing between the title and the canvas */
}