
/* 
vars to control eye movement (without js). Just remove all the js code and tweak these variables to see how you could animate it with just css
*/
@keyframes blink {
  3% {
    border-top: 76px solid #f7f2ff;
    border-bottom: 76px solid #f7f2ff;
  }
  15% {
    border-top: 30px solid #f7f2ff;
    border-bottom: 20px solid #f7f2ff;
  }
  80% {
    border-top: 70px solid #f7f2ff;
    border-bottom: 40px solid #f7f2ff;
  }
}
@keyframes eyemove {
  3% {
    left: 45px;
    top: 45px;
  }
  30% {
    left: 70px;
    top: 50px;
  }
  80% {
    left: 20px;
    top: 45px;
  }
}

.eye {
  opacity: 0.3;
  position: fixed;
  left: calc(50% - 75px);
  top: 10%;
  border-radius: 60%;
  background: rgba(245,240,240,1);
  width: 150px;
  height: 150px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  box-sizing: border-box;
}

.lids {
  box-shadow: inset 0px 0px 40px black;
  position: absolute;
  border-top: 30px solid #f7f2ff;
  border-bottom: 20px solid #f7f2ff;
  top: -1px;
  width: 150px;
  height: 152px;
  border-radius: 60%;
  background: rgba(255, 0, 255, 0);
  box-sizing: border-box;
}

.eyeshine {
  position: absolute;
  left: 100px;
  top: 50px;
  width: 20px;
  height: 15px;
  border-radius: 60%;
  background-color: rgba(255, 255, 255, 0.2);
}

.iris {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 60%;
  left: 45px;
  top: 45px;
  background-color: rgba(100, 155, 155, 0.9);
  box-shadow: inset 0px 0px 30px -5px black;
}

.pupil {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 30px;
  height: 30px;
  border-radius: 60%;
  background-color: black;
  box-shadow: 0px 0px 30px white;
}

.pupil-shine {
  position: absolute;
  left: 60%;
  top: 20%;
  width: 20%;
  height: 20%;
  border-radius: 60%;
  background-color: rgba(255, 255, 255, 0.2);
}

#other-stuff {
  position: absolute;
  top: 85%;
  left: 75%;
  color: #96807B;
}

#other-stuff a {
  text-decoration: none;
  color: #C48578;
}
