/* src/styles/index.css */
* {
  box-sizing: border-box;
  margin: 0;
}

html, body {
  overflow: hidden;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  background: #000;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
}
