body {
  padding: 0;
  margin: 0;
}
@font-face {
  font-family: "AvertaPE-Bold";
  src: url(../images/AvertaPE-Bold.otf);
}
@font-face {
  font-family: "AvertaPE-Regular";
  src: url(../images/AvertaPE-Regular.otf);
}

#esk_adArea {
  width: 300px;
  height: 600px;
  position: relative;
  color: #ffffff;
  font-family: "AvertaPE-Regular";
  overflow: hidden;
  background-image: url(../images/bg.jpg);
}
.abs {
  position: absolute;
}
.opacity0 {
  opacity: 0;
}
img,
video {
  max-width: 100%;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  touch-action: none;
}

.preview {
  position: absolute;
  width: 100%;
  /* height: 100%; */
  top: 0px;
  /* padding-top: 70px; */
  /* background-color: #00000057; */
}

.contBG {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100px;
  background-color: #8d5dd9;
  transform: translateY(100px);
}

#timerCont {
  position: absolute;
  left: 30px;
  bottom: 20px;
  transform: translateY(100px);
}
.time,
.score {
  text-align: center;
  width: 100%;
  font-family: "AvertaPE-Bold";
  font-size: 25px;
}

#scoreCont {
  position: absolute;
  right: 30px;
  bottom: 20px;
  transform: translateY(100px);
}

p {
  margin: 0;
  text-align: center;
}
#game_canvas {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
}

#game_cn {
  width: 300px;
  height: 500px;
  position: absolute;
  top: 0px;
  left: 0;
  /* background-color: #00000057; */
  overflow: hidden;
}

.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.stars img {
  position: absolute;
  bottom: 0;
}
.stars1 {
  animation: moveStars 5s linear infinite;
}
.stars2 {
  bottom: 100% !important;
  animation: moveStars 5s linear infinite;
  /* animation-delay: 1.5s; */
}

#shooter {
  position: absolute;
  /* background-image: url(../images/shooter.png); */
  width: 53px;
  height: 135px;
  bottom: 20px;
  left: calc(50% - (53px / 2));
  background-size: 100%;
}
.rocket {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  /* opacity: 0; */
}
.booster {
  opacity: 1;
  position: absolute;
  width: 100%;
  left: 0;
  top: 40%;
  height: 120px;
  /* background-color: black; */
  /* z-index: -1; */
}
.boost {
  position: absolute;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  /* background-color: #ffdc01; */
  background-image: url(../images/flame.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  /* transition: background-color 0.2s cubic-bezier(0.075, 0.82, 0.165, 1); */
}
.gun {
  bottom: 150px;
  position: absolute;
  left: calc(50% - 2.5px);
}
.bullet {
  width: 5px;
  height: 20px;
  border-radius: 10px;
  background-color: #fff;
  position: absolute;
}

.obst {
  position: absolute;
  width: 48px;
  height: 52px;
  top: -20px;
  background-size: 100%;
  background-repeat: no-repeat;
}

#dragEL {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background-color: rgba(153, 78, 51, 0.231); */
}

.final {
  background-image: url(../images/final.png);
  width: 100%;
  height: 100%;
  transform: scale(0);
}
.message {
  position: absolute;

  width: 50%;
  left: 25%;
  top: 100px;
  font-size: 20px;
  background-color: #ffffff57;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 5px 10px;
  box-sizing: border-box;
}
.top {
  font-size: 22px;
  font-family: "AvertaPE-Bold";
}
.top span {
  color: #8d5dd9;
  font-size: 35px;
}
.bottom {
  font-size: 18px;
}

.ob1 {
  left: 15px;
  top: 25px;
}
.ob2 {
  left: 10px;
  bottom: 295px;
}

.ob3 {
  right: 10px;
  top: 300px;
}
@keyframes moveStars {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
