html {
	height: 100%;
}
body {
	background-attachment:fixed;
	background-repeat: no-repeat;
	background-position:center;
	background-size:100% 100%;
	overflow:hidden;
	user-select:none;
}
.se-pre-con
{
position: fixed;
left: 0px;
top:150px;
width:100%;
height: 100px;
z-index: 9999;
background-repeat: no-repeat;
background-position:center;
}
.nopadding{
	padding:0px;
	

}
#logo,#next,#skip{
    float: right;
    position: relative;
}
#footer{	
	position: fixed; 	
	bottom: 0;
	
	
}
.AnswerImage{
	width:100%;
	height:100%;
	display: none;
    
}

.icon{
	height: 50%;
	width: 50%;
}	
	

#next:active {
	transform: translateY(4px);
}
#sound:active {
	transform: translateY(4px);
}
#playButton:active {
	transform: translateY(4px);
}
#home:active {
	transform: translateY(4px);
}
#skip:active {
	transform: translateY(4px);
}
#replay:active {
	transform: translateY(4px);
}
.childDiv{
	height: 24vh;
	border: 1px solid white;
	position: relative;
}
p{
	
	
	font-size: 3vw;
	font-weight: bold;
	position: absolute;
	top: 50%;
	left: 50%;
  	transform: translate(-50%, -50%);
}
.gameover{
	font-size: 7vw;
	top: 40%;
	left: 50%;
  	transform: translate(-50%, -50%);
	font-weight: bold;
	position: fixed;
}
.img {
	
	animation: shake 0.5s;
	animation-iteration-count: 3;
  }
@keyframes shake {
	0% { transform: translate(1px, 1px) rotate(0deg); }
	10% { transform: translate(-1px, -2px) rotate(-1deg); }
	20% { transform: translate(-3px, 0px) rotate(1deg); }
	30% { transform: translate(3px, 2px) rotate(0deg); }
	40% { transform: translate(1px, -1px) rotate(1deg); }
	50% { transform: translate(-1px, 2px) rotate(-1deg); }
	60% { transform: translate(-3px, 1px) rotate(0deg); }
	70% { transform: translate(3px, 1px) rotate(-1deg); }
	80% { transform: translate(-1px, -1px) rotate(1deg); }
	90% { transform: translate(1px, 2px) rotate(0deg); }
	100% { transform: translate(1px, -2px) rotate(-1deg); }
  }
 
  .moveup {
	
	animation: MoveUpDown 1s linear infinite;
  }
  @keyframes MoveUpDown {
	0%, 100% {
	  bottom: 0;
	}
	50% {
	  bottom: 30px;
	}
  }