body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #121213;
    color: white;
}

.game-container {
    text-align: center;
}

input {
    padding: 10px;
    font-size: 1rem;
    margin-bottom: 10px;
}

button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #538d4e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #3a6e36;
}

.board {
    display: grid;
    grid-template-columns: repeat(5, 50px);
    grid-gap: 5px;
    justify-content: center;
    margin-top: 20px;
}

.tile {
    width: 50px;
    height: 50px;
    background-color: #3a3a3c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.correct {
    background-color: #538d4e;
}

.present {
    background-color: #b59f3b;
}

.absent {
    background-color: #3a3a3c;
}

.keyboard {
    margin-top: 20px;
}

.key {
    padding: 10px;
    margin: 2px;
    background-color: #818384;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
}

.key:hover {
    background-color: #565758;
}

#share-game {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

#share-game:hover {
    background-color: #155ab6;
}
