h1 {
    color: green;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#gameGrid {
    display: grid;
    grid: auto-flow 60px / repeat(5, 55px);
}

#gameState {
    text-align: center;
}

div.letter {
    box-sizing: border-box;
    border-radius: 10%;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    font-size: x-large;
    background-color: beige;
    border: 1px solid black;
    width: 50px;
    height: 50px;
    text-align: center;
    align-content: center;
}

div.letter.letter-wrong {
    background-color: lightgray;
}

div.letter.letter-wrong-location {
    background-color: yellow;
}

div.letter.letter-correct {
    background-color: lightgreen;
}

div.selected-letter {
    border-width: 3px;
}