


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

.container {
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 300px;
}

#wordDisplay {
    font-size: 2em;
    margin-bottom: 20px;
}

#guessInput {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
}

#guessButton {
    padding: 10px 15px;
}

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

#guessedLetters {
    margin-top: 10px;
    font-size: 1em;
}

#remainingAttempts {
    margin-top: 10px;
    font-size: 1em;
    color: red;
}

#clue {
    margin-top: 15px;
    font-size: 1em;
    color: blue;
}


