.se-pre-con {
	position: fixed;
	left: 0px;
	top:150px;
	width:100%;
	height: 100px;
	z-index: 9999;
	background-repeat: no-repeat;
	background-position:center;
}

body
{
	background-size:100% 100%;
	background-repeat:no-repeat;
	background-position:center;
	background-attachment:fixed;
	user-select:none;
}
.shownWord
{
	font-size: 5vw;
	margin-top:2vh;
	font-weight: bold;
	color:black;
	margin-left:38vw;
}
.letterSpan
{
	margin-left:1vw;
}
#coverPage
{
	position:fixed;
	bottom:0;
}
#footer
{
	height: 42.5vh;
	background-size: 100% 100%;
    background-repeat: no-repeat;
    position:fixed;
    bottom:0;
}
.noPadding
{
	padding:0 !important;
}
#question,#example
{
	font-size:5vw;
	text-align:center;
}
.text,.options
{
	background-repeat:no-repeat;
	background-size:100% 100%;
}


#optionDiv
{
	 margin-top:6%;
}
#endpage
{
	display:none;
}
#acknowledgementDiv 
{
	background-color: aliceblue;
	border: 0.22vw solid black;
	border-radius: 3vw;
}
#developerNameDiv
{
	margin-bottom: 2vh;
}
#coverPage
{
	position: fixed;
    bottom: 36vh;
    right: 4.8vw;
}
.fontClass
{
	font-size:1.3vw;
	margin-top:1vh;
	color:black;
}
.firstLetter:first-letter
{
	font-size:1.5vw;
}
.text,.options
{
	margin:4vh 4vw 4vh 4vw;
	height:18vh;
	font-size:5vw;
	color:black;
}

#wordOuterDiv
{
	height:25vh;
	background-size:cover;
	background-repeat:no-repeat;
}

#widget,#nextDiv
{
	position:fixed;
	bottom:0;
}
#creditDiv
{
	position:fixed;
	right:0;
	bottom:0;
}
#gameOver
{
	font-size:6.5vw;
	font-weight:bold;
	margin-top:-3vh;
}
@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;
}
#responseBox {
    margin-top: 25vh;
    background-color: #185b94;
    color: white;
	position:relative;
	top:0;
	left:0;
	height: fit-content;
	padding:2vh;
}
#Yes,#No
{
	background-color:rgb(249,185,0);
	color:black;
	font-size:1.7vw;
}
.blink_me
{
	animation: blinker 1s linear infinite;
}
@keyframes blinker 
{  
	50% { opacity: 0.5; }
}