* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  font-family: system-ui, sans-serif;
}

#canvas-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
