

:root {

}

/* html {
  background-color: darkgray;
} */


body {
  /* background-color: black; */
  /* background-color: white; */
  background-color: darkgray;
    /* background-color: hsl(0,0%,4%); */

  margin:0;

  /* leave it to hide the scrollbars */
  overflow: hidden;
}


* {
  box-sizing: border-box;
}


.pageContainer {
  width:100vw;
  height:100vh;
  display:flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  /* background-color: darkgray; */
}

.myCanvas {
  position:absolute;
  overflow:hidden;
}
