button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
#game-container {
  position: relative;
  width: 420px;
  height: 620px;
  margin: 0 auto;
  background-position: center;
  background-size: cover;
}
#game-title {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9000;
  background-color: #fff;
}
#game-title img {
  width: 100%;
}
#player-gauge {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#player-gauge .g-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
}
#player-gauge-ecstasy {
  display: flex;
  position: relative;
  align-items: end;
  width: 20px;
  height: 90%;
  padding: 4px;
  margin-right: 10px;
  background-color: rgba(0,0,0,0.6);
  z-index: 1000;
}
#player-gauge-ecstasy #player-gauge-ecstasy-ratio {
  position: relative;
  width: 100%;
  height: 0%;
  background-image: linear-gradient(to bottom, #fff, #ff7a91);
  transition: 0.6s;
}
#birth-button {
  position: absolute;
  top: 25px;
  left: 10px;
  transition: 0.2s;
  z-index: 1000;
}
#birth-button.bounce {
  transform: scale(1.1, 1.1);
}
#birth-button.bounce svg {
  stroke: #ff7a91 !important;
}
#birth-button.bounce svg .eyes {
  fill: #ff7a91 !important;
}
#birth-button.bounce svg path {
  fill: #ff7a91 !important;
}
#clean-button {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1000;
}
#speed-button svg {
  position: absolute;
  bottom: 80px;
  left: 10px;
  z-index: 1000;
  transform: rotate(90deg);
  transition: 0.1s;
}
#anime-girl .g-inner {
  position: relative;
  overflow: hidden;
}
#anime-girl img {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}
#anime-girl #girl-layer {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}
#anime-girl #girl-blush {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 9;
}

