body {
  overflow-x: hidden;
  overflow-y: scroll;
  background: #eef;
  touch-action: manipulation;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.Explanation {
  padding: 10px;
  font-size: 15pt;
  text-align: center;
}
.Explanation code {
  color: #09cdda;
}
.Stream {
  position: relative;
  min-height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#left {
  float: left;
  left: 0;
}
#middle {
  margin: 0 auto;
}
#middle video {
  display: none;
}
#right {
  float: right;
}
.Line {
  z-index: 5;
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 240px;
  border-right: 1px solid red;
}
.Prompt {
  position: relative;
  width: 640px;
  margin: 10px;
}
.SnapshotContainer {
  position: relative;
  width: 640px;
}
.Snapshot {
  position: relative;
  display: flex;
  width: 640px;
  margin-bottom:10px
}
.Snapshot .Button {
  position: absolute;
  padding: 2px 4px;
  width: 16px;
  height: 16px;
  font-family: sans-serif;
}
.Snapshot .Prompt {
  position: absolute;
  width: 300px;
  background-color: rgba(255,255,255,0.5);
}
.Snapshot .Captions {
  font-family: sans-serif;
  position: relative;
  width: 300px;
  margin-left: 20px;
  font-size: 70%;
}
.Snapshot .Captions .Caption {
  margin-bottom: 10px;
}
.Snapshot .Captions.Error {
  color: red;
}
.Snapshot img {
  width: 320px;
  height: 240px;
}
.Button:hover {
  cursor: pointer;
}
.CloseButton {
  top: 0;
  left: 0;
  color: red;
  min-width: 80px;
  font-weight: bold;
  text-align: left;
}
.CloseButton:after {
  content: "Remove";
  display: none;
  font-weight: normal;
}
.CloseButton:hover:after {
  display: block;
  position: absolute;
  top: 4px;
  left: 20px;
}

.SaveButton {
  top: 0;
  right: 320px;
  min-width: 90px;
  text-decoration: none;
  text-align: right;
  color: gold;
}
.SaveButton:after {
  content: "Download";
  display: none;
}
.SaveButton:hover:after {
  display: block;
  position: absolute;
  top: 4px;
  right: 20px;
}
.PlayButton {
  position: absolute;
  left: 50%;
  top: 160px;
  z-index: 10;
  border: 1px solid black;
  border-radius: 4px;
  width: 64px;
  height: 64px;
  font-size: 64px;
  line-height: 64px;
  margin-left: -32px;
  margin-right: -32px;
  padding: 0;
  text-align: center;
}
.ShutterButton {
  position: fixed;
  bottom: clamp(60px, 10%, 96px);
  left: 50%;
  width: 64px;
  height: 64px;
  border: 6px solid white;
  border-radius: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
  background: black;
}
.ShutterButton::after {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  content: '';
  border-radius: 100%;
  background-color: white;
  transition: all 0.3s ease;
}
.ShutterButton:active::after {
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
}
canvas {
  background: black;
}
