body {
  margin: 0;
  overflow: hidden;
  color: black;
  background-color: rgb(162, 0, 202);
  display: flex;
  justify-content: flex-end;
}

#status {
  position: absolute;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  top: 40%;
  left: 0;
  width: 100%;
  font-size: 4vw;
  color: black;
  background-color: rgba(255, 255, 255, 0.105);
  z-index: 1;
  visibility: visible;
}

#poseName {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  position: absolute;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  top: 0%;
  width: auto;
  max-width: 60%;
  height: auto;
  font-size: .8em;
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0.684);
  z-index: 1000;
  visibility: visible;
  padding: 0 0 0 20px;
  border-radius: 0 0 10px 0;
  border-top: 0px;
  border-left: 0px;
  visibility: hidden;
}
#logo {
  width: auto;
  height: 10em;
  filter: invert(100%);
  -webkit-filter: invert(100%);
}
/* media querry */
@media screen and (max-height: 600px) {
  #logo {
    height: 3em;
  }
  #poseName {
    font-size: .6em;
  }
}

/* logo, settings and full screen button */
#settingsDiv {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  position: absolute;
  z-index: 100;
  max-height: 100%;
}
#settingsCogImg {
  width: 100px;
  height: 100px;
  margin: 20px 20px 0 0;
  /* border-radius: 5px;
  border: 1px solid rgb(0, 0, 0); */
  animation: rotation 10s infinite linear;
  background: radial-gradient(
    circle,
    rgba(247, 40, 154, 0.61) 20%,
    rgba(255, 21, 21, 0.466) 40%,
    rgba(255, 255, 255, 0) 75%
  );
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
/* mouse over for settingscogimg */
#settingsCogImg:hover {
  cursor: pointer;
  animation: rotation 5s infinite linear;
  background: radial-gradient(
    circle,
    rgba(43, 40, 247, 0.61) 20%,
    rgba(21, 255, 169, 0.466) 40%,
    rgba(255, 255, 255, 0) 75%
  );
}
#settings_options {
  font-family: Arial, Helvetica, sans-serif;
  background-color: rgba(234, 48, 255, 0.699);
  border: 3px solid black;
  border-radius: 10px;
  max-width: 100%;
  max-height: 80vh;
}
/* set max height if window height less than 400 */
@media only screen and (max-height: 700px) {
  #settings_options {
    overflow: scroll;
    max-height: 40vh;
  }
}
#settings_indiv_options {
  padding: 5px;
}
#settings_title {
  width: 100px;
  text-align: right;
  padding-right: 10px;
  color: rgb(66, 0, 13);
  font-size: medium;
}
.settings_button {
  width: 100%;
  background-color: rgba(42, 149, 250, 0.515);
  border-radius: 5px;
  border: 1px solid rgb(139, 0, 0);
  color: rgb(0, 0, 0);
  font-size: medium;
}
/* change color on button hover */
.settings_button:hover {
  background-color: rgb(2, 92, 177);
}
.settings_button:active {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
#reset_button {
  background-color: rgb(255, 0, 0);
  height: 50px;
}
#settings_indiv_options {
  display: flex;
  flex-direction: row;
}

#logoAndFullScreen {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  position: absolute;
  z-index: 99;
  /* left: 80vw; */
  height: 100%;
  max-height: 100%;
}

#full_screen {
  max-width: 100%;
  height: 100px;
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.515);
  border-radius: 5px;
  border: 1px solid rgb(139, 0, 0);
  color: white;
  font-size: 2vw;
}


.input_video {
  visibility: hidden;
  display: none;
}

.output_canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg); /* Safari and Chrome */
  -moz-transform: rotateY(180deg); /* Firefox */
}

.drawing_canvas {
  position: absolute;
  width: 100%;
  height: 100%;
}

#score_line {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  z-index: 10;
}

#target_pose_canvas_front {
  position: absolute;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.483);
  border-radius: 20px;
  visibility: hidden;
}
#target_pose_canvas_side {
  position: absolute;
  z-index: 3;
  /* top: 30%;
  left: 60%;
  width: 40%;
  height: 70%; */
}

#pose_count {
  font-weight: bold;
  color: rgb(162, 0, 202);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(255, 255, 255);
}
#time {
  font-weight: bold;
  color: rgb(7, 202, 0);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(255, 255, 255);
}

#score {
  font-weight: bold;
  color: rgb(219, 10, 10);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(255, 255, 255);
}
#avg_score {
  font-weight: bold;
  color: rgb(219, 10, 10);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(255, 255, 255);
}
#high_score {
  font-weight: bold;
  color: rgb(219, 10, 10);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgb(255, 255, 255);
  visibility: hidden;
}

.score_info {
  z-index: 10;
  font-size: 1.5em;
  position: relative;
  text-align: right;
  font-family: Arial, Helvetica, sans-serif;
  visibility: hidden;
}

@media only screen and (min-height: 700px) {
  .score_info {
    font-size: 1.7em;
  }
}

#score_display {
  position: absolute;
  z-index: 10;
  left: 0%;
  top: 0%;
  background-color: rgba(0, 0, 0, 0.684);
  visibility: hidden;
  border-radius: 0 0 10px 0;
}

.line_label {
  position: absolute;
  text-align: center;
  z-index: 10;
  text-align: right;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5vw;
  width: 3%;
  font-weight: bold;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  visibility: hidden;
}

#breathe_canvas {
  z-index: 10;
  position: absolute;
}
