body {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
}

body {
  font-family: "Comic Sans MS";
}
body h1 {
  font-family: "Comic Sans MS";
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
  color: white;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3), -1px -1px 0 rgba(0, 0, 0, 0.3), 1px -1px 0 rgba(0, 0, 0, 0.3), -1px 1px 0 rgba(0, 0, 0, 0.3), 1px 1px 0 rgba(0, 0, 0, 0.3);
}

#overlay {
  transition: all 800ms;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999999;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
}
#overlay.hidden {
  height: 0vh;
  opacity: 0;
}
#overlay .overlay-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#overlay .overlay-content #start-game-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#overlay .overlay-content #game-over-content {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#overlay .overlay-content #game-over-content .your-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#overlay .overlay-content #game-over-content .your-score .score {
  font-size: 50px;
  color: #ff9600;
  margin-top: -15px;
}

.button {
  transition: all 400ms;
  opacity: 1;
  padding: 15px 25px;
  border: solid 3px #000;
  background: white;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
}
.button:hover {
  opacity: 0.5;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.character > * {
  position: absolute;
  top: 0;
  left: 0;
}
.character.left {
  transform: scaleX(-1);
}
.character .running {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
.character .running > * {
  position: absolute;
  top: 0;
  left: 0;
}
.character.running .still {
  display: none;
}
.character.running .running {
  display: block;
}
.character.running .running .run1 {
  animation: run 500ms linear 0s infinite;
}
.character.running .running .run2 {
  animation: run 500ms linear 0s infinite reverse;
}

#dude {
  position: absolute;
  bottom: 100px;
  left: 100px;
  z-index: 9999;
  width: 73px;
  height: 288px;
}
#dude .mouth {
  position: absolute;
  top: 79px;
  left: 48px;
  display: none;
}
#dude.shooting .mouth {
  display: block;
}

.taco {
  position: absolute;
  z-index: 999999;
}

.cat {
  position: absolute;
  top: 100px;
  left: 100px;
  width: 110px;
  height: 128px;
  opacity: 1;
}
.cat img {
  width: 110px;
  height: 128px;
}
.cat.dying {
  animation: catRotating 300ms ease-in-out 0s 1, catBlinking 50ms ease-in-out 0s infinite;
}

.raptor-wrap {
  height: 100vh;
  position: absolute;
  z-index: 999998;
  top: -50px;
  left: -350px;
  display: flex;
  flex-direction: column;
}
.raptor-wrap.dinoRun {
  animation: dinoRun 2s linear 0s 1;
}
.raptor-wrap .raptor {
  height: 245px;
  width: 350px;
}
.raptor-wrap .raptor .running {
  position: relative;
}
.raptor-wrap .raptor img {
  height: 245px;
  width: 350px;
}

@keyframes run {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes catBlinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes catRotating {
  0% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes dinoRun {
  0% {
    left: -350px;
  }
  100% {
    left: 100vw;
  }
}
.cat-count-wrap {
  position: absolute;
  z-index: 999999;
  bottom: 30px;
  right: 30px;
}

.raptor-ready-bar {
  transition: all 200ms;
  position: absolute;
  bottom: 50px;
  left: 30px;
  z-index: 999999;
  overflow: hidden;
  width: 400px;
  height: 50px;
  border: solid 4px #000;
  border-radius: 20px;
  background: #fff;
}
.raptor-ready-bar .progress {
  transition: all 200ms;
  background: #ff9600;
  border-radius: 15px;
  width: 0px;
  height: 100%;
}
.raptor-ready-bar .progress .hit-enter {
  display: none;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  width: 100%;
  text-align: center;
  animation: catBlinking 300ms ease-in-out 0s infinite;
}
.raptor-ready-bar.ready {
  box-shadow: 0 4px 8px 0 rgba(255, 0, 0, 0.2), 0 6px 20px 0 rgba(255, 0, 0, 0.19);
}
.raptor-ready-bar.ready .progress {
  animation: blinkProgressColor 700ms ease-in-out 0s alternate infinite;
}
.raptor-ready-bar.ready .progress .hit-enter {
  display: block;
}

@keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blinkProgressColor {
  0% {
    background-color: #ff9600;
  }
  100% {
    background-color: red;
  }
}
.darkHole {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9999999;
  transform: translate(-50%, -50%);
  height: 50vh;
  opacity: 0;
}
.darkHole img {
  max-height: 100%;
}
.darkHole.activate {
  animation: darkHoleActivate 1700ms ease-in-out 0s 1;
}

@keyframes darkHoleActivate {
  0% {
    opacity: 0;
    height: 50vh;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    height: 150vh;
    opacity: 0;
  }
}

/*# sourceMappingURL=main.css.map */
