body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
    margin: 0;
    padding: 0;
}
#gameCanvas {
    background-image: url('static/assets/US-states-game/blank_states_img.gif'); /* Path to your background GIF */
    background-size: contain; /* Ensure it fits the canvas */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    background-position: center; /* Center the image */
    width: 750px; /* Match the canvas width */
    height: 515px; /* Match the canvas height */
}


.container {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    color: #333;
}

input[type="text"] {
    padding: 10px;
    width: 200px;
    margin-right: 10px;
    font-size: 16px;
    border: 1px solid;
    border-radius: 5px;
}

button {
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid;
    border-radius: 5px;
}

#result {
    margin-top: 20px;
    font-size: 18px;
    color: green;
}
