* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(94, 80, 242, 0.2), transparent 32%),
    linear-gradient(180deg, #091123 0%, #060913 100%);
}

body {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.scene-shell {
  position: relative;
  width: 100%;
  height: 100%;
}

.scene-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
}

.scene-canvas.is-dragging {
  cursor: grabbing;
}

.viverse-me-button-slot {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
}
