@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
body {
  height: 100vh;
  font-family: "Press Start 2P", serif;
  background-color: #2b2b2b;
  text-align: center;
}
body .gradation {
  background-image: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body .stroke {
  display: none;
}
body .title {
  padding: 10px;
  color: white;
  font-weight: bold;
  font-size: 2.4em;
  -webkit-text-stroke: 4px white;
  position: relative;
  margin: 0;
  user-select: none;
  white-space: nowrap;
}
body .title .front {
  color: #049fe1;
  -webkit-text-stroke: 0 white;
  position: absolute;
  cursor: url("../img/sight.png") 24 24, crosshair;
}
body .title .front .moru .wavyLine {
  position: absolute;
  width: 50%;
  image-rendering: pixelated;
  left: 0;
  z-index: -1;
  bottom: -0.4em;
}
body .centering {
  display: inline-block;
}
body .damageCount {
  color: red;
  position: absolute;
  right: 0;
  transform: rotate(20deg);
  animation: fadeout 2s;
  -webkit-text-stroke: 0 white;
  z-index: 100;
}
body .damageCount .text {
  position: absolute;
}
body .damageCount .stroke {
  display: inline-block;
  color: black;
  -webkit-text-stroke: 10px black;
  text-stroke: 10px black;
}

@keyframes rumble {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  16.66% {
    transform: translate(4px, -2px) rotate(-5deg);
  }
  33.32% {
    transform: translate(4px, 2px) rotate(5deg);
  }
  49.98% {
    transform: translate(0, 0) rotate(0);
  }
  66.64% {
    transform: translate(-4px, -2px) rotate(5deg);
  }
  83.30% {
    transform: translate(-4px, 2px) rotate(-5deg);
  }
  100% {
    transform: translate(0, 0) rotate(0);
  }
}
.shaking {
  animation: rumble 0.1s linear infinite;
}

@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeout {
  animation: fadeout 1s linear both;
}

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