html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

html {
  font-family: helvetica;
  font-size: 12;
  color: white;
  line-height: 1.4;
}

#camera, #camera--view, #camera--sensor, #camera--output{
    position: fixed;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}
#camera--view, #camera--sensor, #camera--output{
    /*transform: scaleX(-1);
    filter: FlipH;*/
}

#master {
  position: fixed;
  width:100%;
  bottom: 0;
  z-index: 2;
}

/*
#webcam {
  position: absolute;
  height:100vh;
  bottom: 0;
  z-index: 1;
}
*/

#player {
  position: absolute;
  width:100%;
  bottom: 0;
  z-index: 2;
}

#instructions {
  /*border: 1px solid red;*/
  width:100%
  z-index: 4;
}

.fade-in {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 2s;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#text{
  left: 0;
  top: 55%;
  right: 0;
  text-align: center;
  margin: auto;
  position:absolute;
  z-index: 4;
}