

body {
  /* override the default margin of the html body */
  margin: 0;
  overflow: hidden;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Assure que le body prend toute la hauteur de la fenêtre */
}
canvas {
    background-color: #000000;
    display: block;
    max-width: 100%;
    max-height: 100vh;
    display: block;
}

#canvasContainer {
  height: 100vh;
  width: 100vw;

  display: flex;
  align-items: center;
  justify-content: center;
}

#myCanvas {
  max-width: 100vw;
  max-height: 100%;
}
