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

body,html
{
	height:100%;
	margin:0;
}
#matraRow1,#matraRow2
{
	margin-left: 4vw;
	
}	
.toBottom
{
	bottom: 0;
	position:fixed;
}

.zeroPadding
{
padding:0 !important;
}

body
{
	background-size:100% 100%;
	overflow:hidden;
	background-position:center;
	background-repeat:no-repeat;
	background-attachment:fixed;
	user-select:none;
}

#outerDiv
{
	height:48vh;
	background-size:100% 100%;
	overflow:hidden;
	background-position:center;
	background-repeat:no-repeat;	
}

.optionDiv
{
	z-index: 1000;
    position: relative;
	height: 14vh;
    color: black;
    font-size: 4vw;
    text-align: center;
    cursor: pointer;
    background-size: 100% 100%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    font-weight: bold;
    font-family: fantasy;
}

#imageDiv
{
	border: 2px solid black;
    border-radius: 5% 5% 5% 5%;
}
#homeDiv
{
	margin-top:1vh;
}
.innerDiv
{
	display:flex;
}

#instructDiv
{
	text-align: center;
    font-size: 3.5vw;
    color: black;
    font-family: initial;
    font-weight: bold;
    visibility: hidden;
}
h1,#score
{
	text-align: center;
    font-size: 3.5vw;
    color: black;
    font-weight: bold;
}
.wordSpan
{
	font-size: 4vw;
    border-bottom: solid black 3px;
    margin-right: 1vw;
    color: black;
    font-weight: bold;
    font-family: initial;
}

#imageAndLetter
{
	height:33vh;
	background-size:100% 100%;
	overflow:hidden;
	background-position:center;
	background-repeat:no-repeat;
	
}
#letterDiv
{
    text-align: center;
	margin-top: 4vh;
    font-size: 5vw;
}
#letterOuterDiv
{
    background-size: 100% 100%;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
}
.images
{
	border-radius: 5% 0% 0% 5%;
	height:100%;
}
#options
{
	margin-top:2vh;
	margin-left: 3vw;
}

.letterSpan
{
	font-size:13vw;
	font-weight:bolder;
}
.imageLetter
{
	position: relative;
    left: -3vh;
    height: 27vh;
    margin-top: 3vh;
}

.soundAndNext
{
	margin-top:15vh;
}
#imageDiv
{
	background-color:#FEFCF5;
	margin-top:2vh;
	
}
#image
{
	height: 45vh;
}

#soundDiv,#checkDiv
{
	margin-top:15vh;

}
#gamePage
{
	display:none;
}

#acknowledgementDiv
{
	background-color: #e6e6e6;
    border: 0.22vw solid black;
    border-radius: 3vw;
    text-align:center;
}

#startedDate
{
	    margin-bottom: 2vh;
}

.fontClass
{
	font-size: 1.7vw;
    margin-top: 1%;
    color: black;
}
.firstLetter:first-letter
{
	font-size:2vw;
}

#resultDiv
{
	display:none;
}

#instructionDiv
{
	display:none;
}

#instruction
{
	background-color: #2f2f2f;
    border: 1px solid white;
    border-radius: 1.5vw;
    padding-left: 3vw;
    padding-right: 3vw;
    margin-top: -5vh;
    line-height: 12vh;
}
#text
{
	margin-top: 1vh;
    font-size: 2.5vw;
    text-align: left;
	color: white;
}
#heading
{
	font-size:5vw;
	text-align:center;
	color:white;
}
.modal 
{
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: hidden; 
  background-color: rgba(0,0,0,0.6); 
  padding:10%;
}
.blink_me
{
	animation:blinker 1s linear infinite;
}
@keyframes blinker
{
	50%
	{
		opacity:0.5;
	}
}
.bounceCls
{
	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);
} 
}