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,#acknowledgementDiv{
	height: 100%;
	background-size: 100% 100%;	
	background-position: center;
	background-repeat: no-repeat;
	overflow-y:hidden;
}
#questionBoard {
	height: 18vh;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.spanElements
{
	height: 16vh;
    font-size: 2.6vw;
    color: white;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.Quespan
{
	top:7.5vh;
	font-size: 2.8vw;
	color:white;
	font-weight:bold;
	
	position: absolute;
	text-align: center;
}
.options
{
	height: 16vh;
    position: relative;
    margin-top: 1.5vh;
}
/*............................*/
.rotateOption { 
transform: rotateX(360deg);
animation: one 2s ;
animation-direction: alternate;

}
@keyframes one {
	0% {
	  transform: rotateX(0);
	}
	100% {
	  transform: rotateX(180deg);
	}
  }
/*.............................*/
#creditDiv{
	margin-top:2vh;
}
#NextButtonDiv{
	position: fixed;
	bottom: 0%;
}
  #gameOver
  {
	  color: white;
	  font-size: 7vw;
	  font-weight:bold;
	  margin-top:-4vh;
  }
  #acknowledgementDiv 
  {
	  display: block;
  }
  #finalPage
  {
	  display:none;
  }
  #acknowledgementDiv 
  {
	  display: block;
	  margin-top: 2vh;
	  text-align:center;
  }
  #developerNameDiv
  {
	  margin-bottom: 2vh;
  }
  .fontClass
  {  
	font-size: 1.6vw;
	margin-top: 1.5%;
	color: white;
	margin-bottom: 1vh;
  }
  .firstLetter:first-letter
  {
  font-size:1.5vw;
  }
  #finalPage
  {
	  display:none;
  }
  .frogImgStyle{
	  z-index: 10;
	  position: absolute;
  }
 
#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);
} 
}