/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #Ffff00; /* Light gray background for contrast */
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin: 20px;
    color: #333; /* Dark gray text color */
}

#gameCanvas {
    border: 2px solid #333; /* Dark gray border for visibility */
    background-color: #fff; /* White background for the canvas */
}

#restart-button {
    display: none; /* Hidden by default */
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50; /* Green background */
    color: white; /* White text color */
    border: none;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer;
}

#restart-button:hover {
    background-color: #45a049; /* Darker green on hover */
}
