html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  user-select: none;
  background-color: #738678;
}

#camera,
#camera--view,
#camera--sensor,
#camera--output {
  position: fixed;
  height: 100%;
  width: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: stroke;
  color: white;
}

#camera h1 {
  text-align: center;
  font-family: "Monallesia Script", sans-serif;
  padding: 50px 0 0 0;
  font-size: 2rem;
}
#camera h3 {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

#camera h4 {
  margin: 0;
  text-align: center;
  font-family: "Monallesia Script", sans-serif;
  position: absolute;
  bottom: 0;
}

#camera h3 {
  font-weight: 400;
  font-size: 1rem;
}

#camera h4 {
  position: absolute;
  bottom: 50px;
  width: 100%;
  font-size: 2rem;
}
#camera h4 span {
  font-size: 1.5rem;
}

#camera--view,
#camera--sensor,
#camera--output {
  transform: scaleX(-1);
  filter: FlipH;
}

#camera--trigger {
  width: 165px;
  background-color: rgb(39, 37, 37);
  color: white;
  font-size: 100px;
  border-radius: 200px;
  border: 4px solid white;
  padding: 15px;
  text-align: center;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  position: fixed;
  top: calc(50% - 85px);
  left: calc(50% - 85px);
  cursor: pointer;
  transition: all 0.5s linear ease-in-out;
  content: " ";
  height: 165px;
}

#camera--trigger:hover {
  background-color: rgb(83, 81, 81);
  color: white;
}

.taken {
  height: 100px !important;
  width: 100px !important;
  transition: all 0.5s ease-in;
  border: solid 3px white;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  top: 20px;
  right: 20px;
  z-index: 2;
  user-select: none;
}

#view--change {
  width: 50px;
  background-color: rgb(39, 37, 37);
  color: white;
  font-size: 20px;
  border-radius: 36px;
  border: 4px solid white;
  padding: 5px 0;
  text-align: center;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  position: fixed;
  bottom: 60px;
  right: 20%;
  cursor: pointer;
  transition: all 0.5s linear ease-in-out;
  content: " ";
  height: 50px;
}

#view--change img {
  height: 32px;
  width: 32px;
}
