body
{
  background-repeat: no-repeat;
  background-origin: content-box;
  background-attachment: fixed;
  background-size:100% 100%;	
  user-select:none;
}
.nopadding
{
	padding:0px !important;
}
#playButtonDiv,#NextButtonDiv,#widget{
  position: fixed;
  bottom: 0;
}


#queDiv{
  color: black;
  font-size: 3.5vw;
  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: 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;
}
.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; 

}
/*modal*/
#questionMsg
{
font-size:3.5vw;
}
#responseBox {
	margin-top: 25vh;
	background-color: #185b94;
	color: white;
 position:relative;
 top:0;
 left:0;
 height: 48vh;
 padding:2vh;
 }
 #btnDiv
 {
 margin-top:3vh;
 }
 #Yes,#No
 {
 background-color:rgb(249,185,0);
 color:black;
 font-size:2.5vw;
 font-weight:bold;
 }
 @keyframes zoomIn {
  from {
	opacity: 0;
	-webkit-transform: scale3d(0.3, 0.3, 0.3);
	transform: scale3d(0.3, 0.3, 0.3);
  }
 
  50% {
	opacity: 1;
  }
 }
 
 .zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  animation-duration:1s;
 }
 .modal-content{
 background-color: white;/*rgba(38, 59, 95, 0.611764705882353);*/
 box-shadow:17px 25px 13px rgb(0, 0, 0), inset -98px 0px 180px rgb(60, 59, 130) /*17px 25px 14px rgb(0, 0, 0), inset -98px 0px 100px rgb(38, 59, 95)*/;
 border: 4px solid white;
 position: fixed;
	top: 25vh;
	right: 0;
	bottom: 0;
 left: 25vh;
 height:fit-content;
 }
 .overlay
 {
 z-index: 10;
 background-color: rgba(0,0,0,0.5);
 }
.blink_me
{
    animation:blinker 1s linear infinite;
}
@keyframes blinker
{
    50%
    {
        opacity:0.1;
    }
}