.game-scene {
  position: relative;
  width: 90px;
  height: 160px;
  background-color: lightblue;
  font-family: Roboto;
  overflow: hidden;
}
.game-scene > div {
  position: absolute;
}
.game-scene .overlay {
  display: none;
}
.game-scene.paused .overlay {
  z-index: 2;
  height: 100%;
  width: 100%;
  color: white;
  font-size: 1.5rem;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  letter-spacing: 0.1rem;
  font-family: "Upheaval", sans-serif;
  display: flex;
  text-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.game-scene .score {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Upheaval", sans-serif;
  z-index: 1;
  top: 5px;
  color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  letter-spacing: 0.1rem;
}
.game-scene .player {
  width: 20px;
  height: 20px;
  left: 10px;
  bottom: var(--pos-y);
  background-image: url("../assets/CSS3_logo.png");
  background-color: #2465f1;
  background-size: cover;
  transform: rotate(var(--rot));
}
.game-scene .pipes {
  height: 100%;
  bottom: var(--pos-y);
}
.game-scene .pipes > div {
  --space: 70px;
  position: absolute;
  left: var(--pos-x);
  width: 20px;
  height: 80px;
  background-color: greenyellow;
}
.game-scene .pipes > div.top {
  top: calc(var(--space) / -2);
}
.game-scene .pipes > div.bottom {
  bottom: calc(var(--space) / -2);
}

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