body {
    font-family: 'Courier New', Courier, monospace;
    background: linear-gradient(90deg, #1f2833, #0b0c10);
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#game-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#board {
    background-image: url("flutterybirdbg.png");
    background-size: cover;
}

/* Style for the score */
#score {
    color: #66fcf1;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 2px 2px #0b0c10;
    margin-top: 10px;
    z-index: 10;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Style for the top instructions */
#top-instructions {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px #000000;
    position: absolute;
    top: 60px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

/* Style for the bottom instructions */
#bottom-instructions {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 2px 2px #000000;
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

/* Style for Game Over text */
#gameOver {
    color: #ff3333;
    font-size: 60px;
    font-weight: bold;
    text-shadow: 3px 3px #000000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 10;
}
