@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
* {
  margin: 0;
}
body {
  background-color: #89aed3;
}
#container {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#playground {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 30%;
  height: 80%;
  background-color: white;
  border: 5px solid black;
  border-radius: 10px;
  background-size: 1200px;
  background-image: url("./flappy-bird-background2.png");
}
#upper-playground {
  display: flex;
  justify-content: end;
  height: 100%;
  width: 100%;
}
#score {
  margin-left: auto;
  margin-right: auto;
  font-family: "Press Start 2P", cursive;
  padding: 20px;
  font-size: 36px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 4px 4px 0px black;
  z-index: 10;
}
#lower-playground {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: end;
  justify-content: end;
}

.pipe {
  box-sizing: border-box;
  border: 4px solid black;
  position: absolute;
  background: rgb(229, 253, 157);
  background: linear-gradient(
    90deg,
    rgba(229, 253, 157, 1) 0%,
    rgba(117, 190, 49, 1) 58%,
    rgba(83, 134, 36, 1) 100%
  );
  border-radius: 5px;
}
.pipe::before {
  content: "";
  position: absolute;
  left: -6px;
  width: 108%;
  height: 30px;

  background: linear-gradient(
    90deg,
    rgba(229, 253, 157, 1) 0%,
    rgba(117, 190, 49, 1) 58%,
    rgba(83, 134, 36, 1) 100%
  );
  border: 4px solid black;
  border-radius: 8px 8px 0 0;

  top: var(--pipe-top-offset, auto); /* Set top if defined */
  bottom: var(--pipe-bottom-offset, auto);
}
#game-over {
  visibility: hidden;

  border-radius: 5px;
  align-items: center;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
  z-index: 30;
  width: 70%;
  height: 50%;
  background-color: #dbda96;
  border: 5px solid #d2aa4f;
  box-shadow: 5px 10px 0px #523747;

  font-family: "Press Start 2P", cursive;
  font-size: 36px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 4px 4px 0px black;
  color: #d2aa4f;
  text-shadow: 4px 4px 0px #f1f0a5;
}
#game-over h1 {
  font-family: "Press Start 2P", cursive;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 10;
  font-size: 24px;
  font-weight: 900;
}

button {
  font-family: "Press Start 2P", cursive;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 4px 4px 0px black;
  color: white;
  text-shadow: 4px 2px 0px #b84e13;

  height: 2.5em;
  width: 60%;
  border-radius: 5px;
  background-color: #e06119;
  border: 5px solid white;
  box-shadow: 5px 10px 0px #523747;
}
button:hover {
  background-color: #b45016;
}

button:active {
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}
#game-over p {
  margin: 50px;
  font-size: 20px;
}
#bird {
  z-index: 20;

  position: absolute;
  width: 68px;
  height: 48px;
}
#bird-image {
  transition: transform 0.5s ease;
  width: 68px;
  height: 48px;
}
