* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.game {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}
.title {
    width: 500px;
    text-align: center;
    border-bottom: 1px solid grey;
    margin: 15px 0;
    font-size: 18px;
}
.cell {
    border: 2px solid rgb(158, 162, 165, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    font-weight: bold;
}
.word-cells {
    display: grid;
    grid-template-columns: repeat(5, 60px);
    grid-template-rows:  repeat(6, 60px);
    gap: 10px;
}
.hint {
    margin: 40px;
    padding: 0px 20px;
    background-color: none;
    color: white;
    border: none;
    border-radius: 10px;
}
.keyboard {
    display: grid;
    grid-template-columns: repeat(10, 40px);
    grid-template-rows: repeat(3,40px);
    gap: 2px;
}
.key {
    border: 1px solid rgba(136, 138, 139, 0.5);
    border-radius: 10px;
    background-color: rgb(202, 206, 202);
    color: black;
    font-weight: 600;
    font-size: 20px;
}
#enter {
    grid-column:  1 / 3;
    background-color: rgb(158, 158, 158);
}
