/* Add a dark mode based on system settings */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #000;
    color: #fff;
  }
}

/* center everything horizontally */
body {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  /* height: 100vh; */
  /* margin: 0; */
}


div {
  margin: 10px;
  /* width: 100%; */
}

.container {
  display: flex;
  justify-content: center;
}

/* canvas { */
/* width: 100%; */
/* } */