
html {
	height: 100%;
}
body {
	user-select: none;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	overflow: hidden;
}
.se-pre-con {
	position: fixed;
	left: 0px;
	top: 30vh;
	width: 100%;
	height: 100px;
	z-index: 9999;
	background-repeat: no-repeat;
	background-position: center;
}

.toBottom{
	position: fixed;
	bottom: 0vh;
}
.nopadding{
	padding: 0px !important;
}
#gameOverTextDiv {
  /* top: 6vh; */
  color: Black;
  font-size: 7vw;
  font-weight: bold;
  text-align: center;
}

#acknowledgementDiv {
  margin-top: 6vh; 
	display: none;
	text-align: center;
	background-color: aliceblue;
	border-radius: 3vw;
    border: 0.22vw solid black;
    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;
}

.blink_me {
    /* background-color: rgba(255, 255, 255, 0.548); */
    animation: blinker 1s linear infinite;
}
@keyframes blinker
{
  50%
  {
      opacity:0.5;
  }
}

.bounce_blink_me
{
   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);
}
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
  animation-duration: 1s;
}


.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
  animation: flash 2s linear infinite;
}