body {
    font-family: sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;

    background-image: url(images/ares.jpg);
    background-size: cover;
    background-repeat: no-repeat;

}

.container {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

h1 {
    color: #007bff;
    margin-bottom: 10px;
}

.controls {
    margin: 20px 0;
}

#guessInput {
    padding: 10px;
    margin-right: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    width: 150px;
    font-size: 16px;
}

button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

#checkButton {
    background-color: #28a745;
    color: white;
}

#checkButton:hover {
    background-color: #218838;
}

#resetButton {
    background-color: #dc3545;
    color: white;
    margin-top: 10px;
}

#resetButton:hover {
    background-color: #c82333;
}

.message {
    margin-top: 15px;
    font-size: 1.1em;
    font-weight: bold;
    min-height: 25px; /* To prevent layout shift */
}

#guessesLeft {
    font-style: italic;
    color: #6c757d;
}