
.option{
	top: 3.8vh;
    right: 0.8vw;
}
.outerDivCss{
	left: 0.8vw;
}
.wholeNoDivCss{
	top: 4.5vh;
    right: 1.2vw;
}
.coumaDivCss{
    top: 3vh;
    right: 0.3vw;
}
.unlikeFraction{
    margin-left: 0.5vw;
}
.unlikeFractionNum1{
    right: 1.7vw;
}
.borderBottom{
	border-bottom: 3px solid black;
}

#questionDiv {
	bottom: 6vh;
    color: yellow;
    font-size: 4vw;
    font-weight: bold;
	text-align: center;
}
#optionInnerDiv1{
	left: 5vw;
}
#boardImg{
	top: 15vh;
}
.optionInnerCss{
	bottom: 20vh;
	position: relative;
}
.EggCss{
  height: 30vh;
  color: black;
  font-size: 2.5vw; 
  font-weight: bold;
  text-align: center;
  user-select: none;
  overflow-y: hidden;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#henDiv{
	bottom: -6vh;
	position: fixed;
}
#henImg{
	height: 100%;
}

#creditDiv{
	margin-top: 9vh;
}

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
  animation-duration: 1s;
} 

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
  animation-duration: 1s;
}