body
{
  background-repeat: no-repeat;
  background-origin: content-box;
  background-attachment: fixed;
  background-size:100% 100%;	
  user-select:none;
}
.nopadding
{
	padding:0px !important;
}
#queDiv{
  background-repeat: no-repeat;
 /*  background-origin: content-box;
  background-attachment: fixed; */
  background-size:100% 100%;	
}
#playButtonDiv,#NextButtonDiv,#widget{
  position: fixed;
  bottom: 0;
}

#queDiv{
  color: black;
  font-size: 3.2vw;
  text-align: center;
  height: 20vh;
  margin-top: -7vh;
  display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: center;
}

#optionsDiv{
  margin-top: 7vh;
  margin-left: 14vw;
}
#optionsNamesDiv{
  margin-left: 14vw;
}
.style{
  height: 40vh;
  background-size:100% 100%;	
}
.style1{
 
  height: 15vh;
  margin-top: 12vh;
}
.style2{
   z-index: 10;
 /* height: 15vh;
  background-color:rgb(76, 93, 243);
  border-radius: 15%;
  border: 2px solid black; */
  position: relative;
  left: 5.5vw;
}
/* #outerDiv0{
  background-color:#FF7100;
}
#outerDiv1{
  background-color:#043BB1;
}
#outerDiv2{
  background-color:#0AD200;
} */
.parastyle{
  margin-top: 5vh;
  text-align: center;
  color: white;
  font-size: 1.5vw;
}
.tensNameStyle{
  margin-top: 1vh;
  text-align: center;
  color: white;
  font-size: 2.5vw;
  text-transform: uppercase;
  
}
#gameOver
{
	color: black;
    font-size: 5vw;
	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;
}
.animation{
 /*  animation-iteration-count:infinite; */
}


@keyframes wobble {
  from {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
  animation-duration: 1s;
    animation-fill-mode: both;
  animation-iteration-count: infinite; 

}
/* .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);
} 
}