* {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;

    height: 100vh;
}

.wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    align-items: center;
    justify-content: center;

    margin: 30px;
    row-gap: 30px;
    column-gap: 50px;
}

.word-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#category {
    text-align: center;
}

#word {
    display: flex;
    flex-direction: row;
    justify-content: center;

    gap: 5px;

    font-size: 18px;

}

.letter {
    width: 20px;
    height: 20px;
    border-bottom: 1px solid black;

    text-align: center;
}

.keyboard {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 5px;
    margin: 0 20px;
}

.keyboard-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.key {
    height: 40px;
    width: 40px;
    border-radius: 5px;

    border: 1px solid #ccc;
    font-size: 18px;
}

.key.incorrect {
    background-color: #e57880;
    color: #fff
}

.key.correct {
    background-color: #65ad89;
    color: #fff
}

@media screen and (max-width: 500px) {
    .key {
        height: 32px;
        width: 32px;
    
        font-size: 15px;
    }
}

@media screen and (max-width: 405px) {
    .key {
        height: 26px;
        width: 26px;
       
        font-size: 12px;
    }
}