body{
    background-color: #DDD0C8;
}

h1{

    color: #323232;
}

.word{
    display: flex;
    flex-direction: row;
    margin: 0 83vh 1vh 83vh;
    position: center;
    justify-content: center;
    border-radius: 10px;


}

.letter{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 50px;
    width: 6vh;
    height: 6vh;
    border-radius: 10px;
    border: 4px solid #323232;
    margin: 2px;
    color: #323232;
}

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

.keyboard-row{
    display: flex;
    flex-direction: row;
}

.keyboard-letter{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 50px;
    width: 6vh;
    height: 6vh;
    border-radius: 10px;
    border: 4px solid #323232;
    margin: 2px;
    color: #323232;
}

.enter{
    width: 16vh;
    background-color: #86b049;
}


.delete{
    padding-right: 10px;
    background-color: #f94449;
}

.current-row{
    box-shadow: 0 0 10px 3px #323232;

}

.center{
    display: flex;
    justify-content: center;

}

.button{
    visibility: hidden;
    display: inline-block;
    outline: 0;
    cursor: pointer;
    padding: 5px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    vertical-align: middle;
    border: 1px solid;
    border-radius: 6px;
    color: #ffffff;
    background-color: #2ea44f;
    border-color: #1b1f2326;
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px 0px inset;
    transition: 0.2s cubic-bezier(0.3, 0, 0.5, 1);
    transition-property: color, background-color, border-color;

}



