body {
  font-family: "Courier New", Courier, monospace;
  text-align: center;
}
#playAgainBtn {
  margin-bottom: 8px;
  font-size: 16px;
  background-color: rgb(117, 199, 226);
  color: white;
  border: white 1px solid;
  padding: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  width: 150px;
  height: 40px;
}
#gameovermodal {
  display: none;
  margin-bottom: 2px;
  margin-top: 20px;
  border-radius: 5px;
  color: white;
  padding: 10px;
  background-color: lightblue;
  width: 200px;
  position: absolute;
  top: 35%;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}
#playAgainBtn:hover {
  background-color: rgb(118, 211, 243);
}
#board {
  /* background-color: skyblue; */
  background-image: url("./imgs/flappybirdbg.png");
}
