/* src/styles.css */
html,
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  overflow: hidden;
  touch-action: manipulation;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
}
#three-canvas {
  display: block;
  max-width: 100vw;
  max-height: 100vh;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
#fullscreen_button {
  position: fixed;
  top: 10px;
  right: 5px;
  z-index: 1000;
  border: none;
  padding: 0;
  background: transparent;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
