html,
body {
	height: 100%;
	background-size: 100% 100%;	
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	user-select:none;	
	overflow-y:hidden;
}

#homeDiv
{
	visibility:hidden;
}

.nopadding
{
	padding:0 !important;
}

.bottomClass
{
	position:fixed;
	bottom:0;
}

#question
{
  /*  // font-size: 5vw; */
	font-weight: bold;
	color:rgb(221,19,123);
	text-align:center;
}
.options,#questionBoard {
	height: 100%;
	background-size: 100% 100%;	
	background-position: center;
	background-repeat: no-repeat;
	overflow-y:hidden;
}
#questionBoard {
	height: 35vh;
	margin-top: -10vh;
	background-size: 100% 100%;	
	background-position: center;
	background-repeat: no-repeat;
	overflow-y:hidden;
}
.spanElements
{
	top:8vh;
	font-size: 2.3vw;
	color:black;
	font-weight:bold;
	transform: translate(-50%, -50%);
	z-index:1;
	position: absolute;
	text-align: center;
  
}
.Quespan
{
	top:7vh;
	font-size: 2.7vw;
	color:black;
	font-weight:bold;
	padding-left:4vh;
	position: absolute;
	text-align: center;
  
}
.options
{
	height: 17vh;
	 position: relative;
	margin-top:8vh;
	padding-top: 1.5vh;
	margin-left: 14vw;
}
#NextButtonDiv{
	position: fixed;
	bottom: 0%;
}
  #gameOver
  {
	  color: black;
	  font-size: 7vw;
	  font-weight:bold;
  }
  #acknowledgementDiv 
  {
	  display: block;
  }
  #finalPage
  {
	  display:none;
  }
  #acknowledgementDiv 
  {
	  display: block;
	  margin-top: 2vh;
	  background-color: aliceblue;
	  border: 0.22vw solid black;
	  border-radius: 3vw;
	  text-align:center;
  }
  #developerNameDiv
  {
	  margin-bottom: 2vh;
  }
  .fontClass
  {
	  font-size:1.3vw;
	  margin-top:1.5%;
	  color:black;
  }
  .firstLetter:first-letter
  {
  font-size:1.5vw;
  }
  #finalPage
  {
	  display:none;
  }
  .frogImgStyle{
	  z-index: 10;
	  position: absolute;
  }
  /*First Two options align to right side*/
 #parentDiv1{
	 margin-left: 13vw;
 }
 #parentDiv0{
	margin-left: 5vw;
}
#frogDiv{
	margin-top: 2.5vh;
}
/* .blink_me
{
    animation:blinker 1s linear infinite;
}
@keyframes blinker
{
    50%
    {
        opacity:0.1;
    }
} */

.blink_me
{
    animation:bounceCls 1.5s linear infinite;
}


@keyframes bounceCls{
 0%, 20%, 53%, 80%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
}
40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
}
70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
}
90% {
    transform: translate3d(0,-4px,0);
} 
}