body {
  font-family: 'Montserrat', sans-serif;
  margin: 2em;
  color: #1a230c;
}




#webcamButton {
  width: 210px;
  height: 70px;
  
  background-color: #5ca5cf;
  color: #1f192f;
  border: none; 
  cursor: pointer; 
  font-family: "Trirong", serif;
  margin-right:13px;
  border-radius: 15px;
  margin-left: 90px;
  font-size: 24px;
}
.back{
    display: inline-block;
    background-color: #f4511e;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 24px;
    padding: 20px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    border-radius: 15px;
    font-family: "Trirong", serif;
  }
  
  .back span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
  }
  
  .back span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
  }
  
  .back:hover span {
    padding-right: 25px;
  }
  
  .back:hover span:after {
    opacity: 1;
    right: 0;
  }
  /* E back */


#downloadButton{
  width: 160px;
  height: 70px;
  border-radius: 10px; 
  
  
  color: #1f192f;
  border: none;
  cursor: pointer;
  font-family: "Trirong", serif;
  margin-left:60px;
  border-radius: 15px;
  background-color: #5ca5cf;
  font-size: 26px;
  cursor: not-allowed;
  
}

 #videoContainer {
  display: none; 
  border: 2px solid #1caecc; 
  display: inline-block; 
  border-radius: 5px; 
}

#webcam {
  width: 640px;
  height: 480px;
  display: block; 
  border: 5px solid rgb(0, 204, 255);
  border-radius: 10px;
} 

video {
  display: block;
}

section {
  opacity: 1;
  transition: opacity 500ms ease-in-out;
}

.removed {
  display: none;
}

.invisible {
  opacity: 0.2;
}

.camView {
  position: relative;
  float: center;
  width: calc(100% - 20px);
  margin: 10px;
  cursor: pointer;
  /* background: #000; */
  height: fit-content;
  width: 100%; 
}

.camView p {
  position: absolute;
  padding: 5px;
  background-color: rgba(85, 0, 255, 0.85);
  color: #FFF;
  border: 1px dashed rgba(255, 255, 255, 0.7);
  z-index: 2;
  font-size: 12px;
}

.highlighter {
  background: rgba(0, 255, 0, 0.25);
  border: 1px dashed #fff;
  z-index: 1;
  position: absolute;
}
.action_buttons{
  display: flex;
  color: #FFF;
  justify-content: left;
  align-items: center;
  font-family: 'Times New Roman', Times, serif;
  width: fit-content;
  font-size: 20px;


}