@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, Helvatica, sans-serif;
}
body {
    text-align: center;
    background-color: #cce2ff;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.wrap{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000005b;
    backdrop-filter: blur(3px);
    z-index: 300;
    display: none;
}
#gameArea {
    position: relative;
    width: 90vw;
    height: 70vh;
    background-color: #c4ddff;
    overflow: hidden;
    margin: 0 auto;
    border: 2px solid #0271ff;
    border-radius: 10px;
    margin-top: 20px;
    background-image: url("./sr2e4fa549d43aws3.png");
    background-position: bottom;
    background-size: 400px;
    background-repeat: repeat-x;
}

.bird {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #67e667;
    border: 2px solid #54d154;
    border-radius: 50%;
    top: 40%;
    left: 20%;
}

.pipe {
    position: absolute;
    width: 52px;
    background-color: #e6d593;
    border: 2px solid #ddcc86;
}

.pipe-top {
    height: 40%;
}

.pipe-bottom {
    height: 60%;
    top: 40%;
}

.score-board {
    color: #000;
    font-weight: 400;
}

.score-board h3 {
    margin: 10px;
}
.score-board span {
    font-weight: 600;
}

#startButton {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #0271ff;
    border: none;
    border-radius: 5px;
    color: white;
}

#startButton:hover {
    background-color: #2382ff;
}

#endGameMessage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 5px;
    display: none;
    width: 300px;
    z-index: 500;
}
h2{
    font-size: 20px;
    margin: 0;
}
p{
    margin: 5px;
}

#endGameMessage.show {
    display: block;
}

#newGameButton {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #0271ff;
    border: none;
    border-radius: 5px;
    color: white;
}

#newGameButton:hover {
    background-color: #2382ff;
}