* {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 0;
    box-sizing: border-box;
}

body {
    height: 100%;
}

.header {
    border-bottom: solid black 0.25rem;
    padding: 2rem;
    font-size: 1.5rem;
}

.main {
    width: 100%;
    padding: 50px;
}

.wordGrid {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.letter {
    height: 75px;
    width: 75px;
    
    margin: 2px;
    font-size: 2.5rem;
    border: solid black;
    border-radius: 8px;

    transition: background-color 1s ease;
}

[feedback="1"] {background: #36cc36;}
[feedback="2"] {background: #e9b138;}
[feedback="3"] {background: #acacac;}

.keyboard {
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
}

.keyboardRow {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.keyboardKey {
    width: 2em;
    font-size: 1.5rem;
    padding: 5px;
    margin: 3px;
    border: solid black 2px;
    border-radius: 4px;
    user-select: none;
}

.enterKey {
    width: min-content;
}
