
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 {
  color: white;
  text-shadow: 0 0 3px #FF0000, 0 0 5px #0000FF;
  font-size: 7vw;
  font-weight: bold;
  text-align: center;
}

#acknowledgementDiv {
  top: 2vh;
  height: 35vh; 
	display: none;
	text-align: center;
	/* background-color: #e3e3e3;
	border-radius: 3vw;
  border: 0.22vw solid rgb(21 211 176);
  box-shadow: 5px 6px 2px black; 
  box-shadow: inset -3px -5px 20px 14px rgb(21 211 176); */
}
#developerNameDiv{
    margin-bottom: 2vh;
}
.fontClass{
    font-size: 1.5vw;
    font-weight: 600;
    margin-top: 2.2vh;
    color:black;
    line-height: 4.2vh;
}
.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;
}

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
  animation-duration: 1s;
} 