:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #063d32;
}

body {
  display: grid;
  place-items: center;
}

#stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

canvas {
  display: block;
  box-shadow: 0 0 70px rgb(0 0 0 / 28%);
}

.camera-source {
  position: fixed;
  width: 2px;
  height: 2px;
  opacity: 0.001;
  pointer-events: none;
}

.status {
  display: none;
}

.status.ready {
  opacity: 0;
}

@media (max-width: 640px) {
  canvas {
    box-shadow: none;
  }

  .status {
    bottom: 10px;
  }
}
