html{
    height:100%;
} 
body{
background-attachment:fixed;
background-repeat: no-repeat;
background-position:center;
background-size:100% 100%;
overflow:hidden; 
user-select:none;
}
.noPadding{
padding:0% !important;
}
.se-pre-con{
position: fixed;
left: 0px;
top:150px;
width:100%;
height: 100px;
z-index: 9999;
background-repeat: no-repeat;
background-position:center;
}
.bgClass{
    background-repeat: no-repeat;
    background-position:center;
    background-size:100% 100%;
}
.bottomClass{
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: baseline;
}
#gamePage{
    display: none;
}
.blockClass{
  font-size: 3vw;
    font-weight: bold;
    color: #393492;
    align-items: center;
    justify-content: center;
    display: flex;
    top: 20vh;
}
.heightClass{
    height: 44vh;
    top: -15vh;
}
#quesSentence{
    font-size: 2.5vw;
    color: black;
    align-items: center;
    justify-content: center;
    display: flex;
   height: 20vh;
  font-weight: bold;
}
#stepDivId{
    height: 75vh;
    top: -16vh;
}

#parentStepId{
    top: 14.5vh;
    height: 60vh;
}
.stepHeight{
    height: 8vh;
}
.borderBottom{
    border-bottom: 2px solid black;
}
.borderRight{
    border-right: 2px solid black;
}

.styleClass{
    font-size: 2.8vw;
    color: #393492;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    display: flex;
}
#keyPad{
    margin-top: -16vh;
}
#numberDiv{
    height: 67vh;
    left: 1.6vw;
    top: 16vh;
}
.finalNumClass{
    font-size: 2.5vw;
    color: rgb(4, 0, 255);
    align-items: center;
    display: flex;
}
.finalTextStyleClass{
    font-size: 2.5vw;
    color: black;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 8vh;
}
#gameOver{
    margin-top: 3vh; 
    font-size: 6vw;
    text-align: center;
    font-weight: bold;
    color:black;  
}
#acknowledgementDiv {
    display: none;
    background-color: #3a4146;
    margin-top: 3vh;
    border: 0.22vw solid white;
    border-radius: 3vw;
    box-shadow: 5px 9px 2px #5e6b6bb8;
    text-align: center;
  }
 #developerNameDiv{
      margin-bottom: 2vh;
  }
.fontClass{
      font-size:1.3vw;
      margin-top:1vh;
      color:white;
  }
.firstLetter:first-letter{
      font-size:1.5vw;
  }
.bounce
{
    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);
} 
}
.blink_me {
    animation: blinker 1.5s linear infinite;
  }
  @keyframes blinker {
    50% {
      background-color: grey;
    }
}
.pulse{
    animation: pulse-black 1.5s infinite;
  }
  @keyframes pulse-black {
	0% {
		transform: scale(0.85);
		
	}
	
	70% {
		transform: scale(1);
	
	}
	
	100% {
		transform: scale(0.85);
		
	}
}
.overlay {
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
}
#responseDiv {
    margin-top: 15vh;
  }
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    background-color: rgba(0, 0, 0, 0.4);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
  }
  .modal-content {
    background-color: rgba(1, 6, 15, 0.612);
    box-shadow: 7px 15px 7px rgb(0, 0, 0), inset -98px 0px 100px rgb(38, 59, 95);
  }
#responseBox {
    /* margin-top: -13vh; */
    background-color: #185b94;
    color: white;
    position: absolute;
    top: 5%;
    left: 0;
    height: 30vh;
    /* padding: 2vh; */
  }
  h2{
      font-size: 34px;
  }
  #Yes{
    background-color: rgb(249, 185, 0);
    color: black;
    font-size: 2.5vw;
    font-weight: bold;
    top: 3vh;
    justify-content: center;
    display: flex;
    align-items: center;
  }
  .btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
  }
  @media screen and (max-width: 800px){
    #responseBox {
       height: 39vh;
    }
    #Yes{
        top: 0vh;
    }
    h2{
        font-size: 32px;
    }
  }