body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: black; /* Pure black background */
    color: #f8f8f2; /* Light text */
    flex-direction: column;
}

h1 {
    color: gold; /* Gold color for the title */
}

canvas {
    background-color: black; /* Pure black canvas background */
}

.score-container {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #f8f8f2; /* Ensure score text is light */
}

#reset-button {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid gold; /* Gold border for reset button */
    background-color: #3a3f4b; /* Darker button background */
    color: gold; /* Gold button text */
    border-radius: 5px;
}

#reset-button:hover {
    background-color: #4a4f5b; /* Slightly lighter dark for hover */
}