* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body, #root {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
}

canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.camera-preview {
  width: 320px;
  height: 240px;
  border: 2px solid #fff;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 100;
  cursor: -webkit-grab;
  cursor: grab;
}

.camera-preview:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.camera-preview video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
/*# sourceMappingURL=style.css.map */