body {
    font-family:'Courier New', Courier, monospace;
    text-align: center;
}

#board {
    /* background-color: skyblue; */
    background-image: url("./flappybirdbg.png");
}
/* Container styling */
div {
    background-color: #f9f9f9; /* Light background */
    border: 2px solid #333; /* Dark border for contrast */
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow for depth */
    font-family: Arial, sans-serif;
}

/* Header styling */
h1 {
    font-size: 1.8em;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

/* List styling */
ul {
    list-style-type: none; /* Remove default bullets */
    padding: 0;
}

li {
    text-align: center;
    background-color: #e1e1e1;
    margin: 8px 0;
    padding: 10px;
    border-radius: 5px;
    font-size: 1em;
    color: #555;
    display: flex;
    align-items: center;
}

li::before {
    content: "•"; /* Custom bullet */
    font-size: 1.5em;
    color: #777;
    margin-right: 10px;
}
