body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

div#live-stream {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

button#launch-webcam {
  position: fixed;
  bottom: 60px;
}

button#hide-video {
  position: fixed;
  bottom: 60px;
  right: 60px;
  display: none;
}

video {
  visibility: hidden;
  mix-blend-mode: overlay;
  border-radius: 1000px;
  opacity: 60%;
}

canvas {
  color: white;
  pointer-events: none;
}

video,
canvas {
  position: absolute;
  transform: rotateY(180deg);
}

div#video-blend-shapes {
  position: fixed;
  right: 0;
  width: 30vw;
  border: solid 1px black;
  padding: 30px;
}

.blend-shapes-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.blend-shapes-label {
  display: flex;
  align-items: center;
  margin-right: 4px;
  width: 200px;
}

.blend-shapes-value {
  display: flex;
  height: 16px;
  align-items: center;
  background-color: #007f8b;
}

#text {
  position: fixed;
  top: 80px;
  right: 120px;
  font-size: 60px;
  color: white;
}

#emoji {
  font-size: 80px;
  position: fixed;
  top: 150px;
  right: 120px;
  font-size: 60px;
}
