body {
    margin: 0;
    padding: 0;
}


.body {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
}



.navbar-brand {
    font-size: 40px;
    line-height: 52px;
    letter-spacing: 0px;
    margin: 0;
    padding: 0;
}




.keyboard {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 484px;
    height: 200px;
}

.keyboard-button {
    width: 43px;
    height: 58px;
    margin: 0 auto 8px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    background-color: #818384;
    border-radius: 5px;
    border: #818384;
}

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

}

#game-board {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 500px;
    height: 451px;
    background-color: #121213;
}

.grid-container {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(6, 1fr);
    flex-grow: 1;
    width: 350px;
    height: 420px;
    gap: .25em;
    background-color: #121213;

}

.tile {
    font-size: 2em;
    font-weight: bold;
    color: #ffffff;
    width: 62px;
    height: 62px;

    border: 3px solid hsl(240, 2%, 34%);
}

.divider {
    border-top: 1px solid #ffffff;
    width: 35%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
}