body {
  margin: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: black;
  color: white;
}
html {
  overflow: hidden;
}
div#scene-play {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

* {
  user-select: none;
  box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/*  */
::-webkit-scrollbar- {
  box-shadow: inset 0 0 1px grey;
  border-radius: 4px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(127, 127, 127, 0.5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(192, 192, 192, 0.75);
  border-radius: 4px;
}