body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Move game to the top */
    height: 100vh;
    background-color: #f4f4f4;
    margin: 0;
    padding-top: 10px;
    /* Optional: add some space from the top */
}


.game-container {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.input-container {
    margin: 20px 0;
}

#playerAnswer {
    padding: 10px;
    font-size: 1rem;
    width: 70%;
    margin-right: 10px;
}

button {
    padding: 10px;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #e4e4e4;
}

.game-controls {
    margin-top: 20px;
}

#wordToGuess {
    font-size: 2rem;
    letter-spacing: 10px;
    font-weight: bold;
}

#feedback {
    margin-top: 20px;
    color: green;
    font-size: 1.2rem;
}

#nextDefinition {
    margin-top: 10px;
    color: #888;
}

#wordCounter {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
}

#completionMessage {
    margin-top: 20px;
    font-size: 24px;
    color: green;
    font-weight: bold;
}