body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
}

.game-container {
    margin-top: 50px;
}

#dogImage {
    max-width: 100%;
    height: auto;
    border: 2px solid #000;
    display: block;
    /* Ensures the image is on its own line */
    margin: 0 auto;
    /* Centers the image */
}

#userGuess {
    display: block;
    /* Puts the input on its own line */
    margin: 20px auto;
    /* Centers the input and provides space above */
    padding: 10px;
    width: 200px;
}

button {
    display: block;
    /* Puts the button on its own line */
    margin: 0 auto;
    /* Centers the button */
    padding: 10px;
}