.se-pre-con 
{
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: center no-repeat #fff;
}
body
{
    font-family: sans-serif;
    overflow: hidden;
}
body,.bgProperty{
    user-select: none;
	background-attachment:fixed;
	background-repeat: no-repeat;
	background-size:100% 100%;
}
#instructionDiv
{
	display: none;
}
#instruction {
    line-height: 8vh;
    color: white;
}
#heading {
    font-size: 5vw;
    text-align: center;
	font-weight: bold;
}
#text {
    font-size: 2.5vw;
    text-align: left;
   
}
.wall
{
	top:-14vh;
}
#discardDiv
{
    font-size: 3vw!important;
    font-weight: bold;
}
#scoreDiv,#discardDiv
{
	font-size: 4vw;
    color: white;	
}
.bgProperty{
    background-attachment: unset!important;
    height:13vh;
}
#homeLogoDiv
{
	margin-top: 2vh;
}
.noPadding
{
    padding: 0%!important;
}
#questionDiv,.finalAnswer
{
	visibility: hidden;
    font-size: 5vw;
    font-weight: bold;
    color: black;
    height: 28vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.finalAnswer
{
	height: 30vh!important;
    font-size: 4vw!important;
}
#question
{
position: absolute;
    bottom: 4.5vh;
}
.number
{
    font-size: 6.5vw;
    font-weight: bold;
    height: auto;
    color: black;
}
.factorDiv
{
	display: flex;
    align-items: center;
	font-size: 4.3vw;
    color: white;
	height: 16vh;
    margin-top: 5vh;
	border-radius: 2vw;
}
.buttons
{
	visibility: hidden;
}
.operationBtn,.discardBtn
{
	margin-top: 2vh;
}
.discardBtn
{
    display: flex;
    justify-content: center;
    align-items: center;
	z-index:1;
}
.answer,.scoreCls
{
    color: white;
    font-size: 3vw;
    font-weight: bold;
}
.message
{
    font-size: 6vw;
    font-weight: bold;
	color:white;
	margin-top: -10vh;
}
.highestScore
{
	font-size: 5vw;
    font-weight: bold;
    color: white;
}
.chances
{
	font-size: 3vw;
    font-weight: bold;
    color: white;
}
.modal-content>div{
	color: white;
    font-size: 4vw;
}
#acknowledgementDiv 
{
	display: none;
	background-color: aliceblue;
    margin-top: 5vh;
    border: 0.22vw solid black;
    border-radius: 3vw;
    box-shadow: 5px 6px 2px black;
}
#developerNameDiv
{
	margin-bottom: 2vh;
}
.fontClass
{
	font-size:1.3vw;
	margin-top:1vh;
	color:black;
}
.firstLetter:first-letter
{
	font-size:1.5vw;
}
.modal-content
{
	background-color: rgba(38, 59, 95, 0.89);
    box-shadow: 17px 25px 14px rgb(0, 0, 0), inset -98px 0px 100px rgb(38, 59, 95);
    border: 4px solid white;
}
.modal 
{
	position: fixed;
    z-index: 1;
    margin-top: 25vh;
    left: 0;
    top: 0;
    overflow: auto;
    bottom: unset;
}
.overlay
{
  z-index: 10;
}
.scrollBar
{
     height:50vh;
     overflow-x: hidden;
	overflow-y: scroll;
}

::-webkit-scrollbar {
    width: 1vw;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px black; 
    border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
    background: white; 
    border-radius: 10px;
}
.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);
} 
}