body{
  background-color: #87ceff;
  overflow: hidden;
}
.bg{
  z-index: -5;
  position: absolute;
  width :100%;
  height: 100vh;
  top: 0;
  left: 0;
  margin: 0;
  background-size : cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
canvas{
  max-width: 900px;
  min-width: 500px;
  width : 90vw;
  overflow: hidden;
  z-index: -4;
}

h2{
    margin: 0;
}

h4#verticalTitle{
  font-size: 0.85em;
  margin: 0;
  writing-mode: vertical-lr;
  text-orientation: upright;
}
#pole{

  background-image: url("BG1.jpg");
  opacity: 1;
}
#bamboo{

  background-image: url("BG2.jpg");
  opacity: 0;
}
#mountain{

  background-image: url("BG3.jpg");
  opacity: 0;
}
#forest{

  background-image: url("BG4.jpg");
  opacity: 0;
}

#inputs{
  padding: 20px 0;
  position: absolute;
  max-width: 300px;
  top: 25px;
  left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-content: space-around;
  position: absolute;
  align-items: center;
  gap: 20px;
  border: 4px solid rgba(255,255,255,0.5);
  border-radius: 15px;
}
#inputs *{
  color: white;
  font-family: arial;
  text-transform: uppercase;
  font-weight: 700;
  max-width: 300px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 1.5em;
}
#state{
  width: 200px;
  height: 50px;
  position: relative;
}
#stateInput, #stateVisual{
  width: 200px;
  left:0;
  top: 0;
  -webkit-appearance: none;
  height: 30px;
    border-radius: 60px;
  outline: none;
  background-color: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0);
  cursor: pointer;
}

#stateInput{
  opacity: 0;
  position: absolute;
}


#stateVisual::-webkit-slider-thumb {
  background-color: steelblue;
   -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

#headInput{
  height: 180px;
  width: 180px;
  min-width: auto;
  border-radius: 10px;
  outline: none;
  background-color: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0);
  cursor: pointer;
  z-index: 2;
}

#eyesInput{
  height: 120px;
  width: 120px;
  min-width: auto;
  border-radius: 50%;
  outline: none;
  background-color: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0);
  cursor: pointer;
  z-index: 2;
}

#blinkInput, #happinessInput{
  width: 15px;
  -webkit-appearance: none;
  height: 120px;
  border-radius: 20px;
  outline: none;
  background-color: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0);
  writing-mode: vertical-lr;
  margin-right: 3px;
  cursor: pointer;
}

#blinkInput::-webkit-slider-thumb, #happinessInput::-webkit-slider-thumb {
    background-color: steelblue;
   -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    cursor: pointer;
}

#followMouse{
  cursor: pointer;
  margin-right: 5px;
}

#followMouse input{
  width: 0;
  opacity: 0;
  background-color: rgba(255,255,255,0.5);
  margin: 0;
}

#followMouse input ~ span{
  height: 25px;
  width: 25px;
  display: inline-block;
  vertical-align: text-bottom;
  border: none;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
}

#followMouse:hover input ~ span{
  background-color: rgba(255,255,255,0.75);
}

#followMouse input:checked ~ span{
  background-color: steelblue;
  height: 21px;
  width: 21px;
  border: solid 2px white;
}

/* Show the checkmark when checked */
#followMouse input:checked ~ span:after {
  display: block;
}

/* Style the checkmark/indicator */
#followMouse input ~ span:after {
  content: "";
  display: none;
  width: 9px;
  height: 9px;
  margin: 6px;
  border-radius: 50%;
  background-color: white;
}

.circle{
  position: absolute;
  z-index: -1;
  top: 2px;
  width: 30px;
  height: 30px;
  background-color: rgba(255,255,255,0.5);
  border: 2px solid rgba(255,255,255,0);
  border-radius: 50%;
  user-select: none;
}

.column{
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.row{
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}
