:root {
  color-scheme: dark;
  background: #001016;
}

* {
  box-sizing: border-box;
}

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

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #001016;
  overscroll-behavior: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

#sketch-root {
  line-height: 0;
}

#sketch-root canvas {
  display: block;
  touch-action: manipulation;
}

@media (max-width: 768px) {
  body {
    display: block;
  }

  #sketch-root,
  #sketch-root canvas {
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw;
    max-height: 100vh;
  }
}
