body{
    font-family:sans-serif;
    margin:30px;
    background:#f5f5f5;
}

#keyboard{
    display:grid;
    grid-template-columns:repeat(7,50px);
    gap:10px;
    margin-bottom:30px;

}

.key{
    width:50px;
    height:50px;
    cursor:pointer;
    padding:0;
}

.key img{
    width:100%;
    height: auto;
}

#inputArea{
    min-height:90px;
    border:1px solid #999;
    background:white;
    padding:10px;
    display:flex;
    flex-wrap:wrap;
    gap:5px;
}

#inputArea img{
    width:50px;
    height:50px;
}

.buttons{
    margin:20px 0;
}

button{
    padding:10px 20px;
    margin-right:10px;
    cursor:pointer;
}

#result{
    font-size:40px;
    font-family:monospace;
    letter-spacing:8px;
    min-height:50px;
}
#allResults{
    margin-top:20px;
    font-family:monospace;
    font-size:20px;
    white-space:pre;
}

.shiftRow{
    margin:4px 0;
}

#length{
    font-size:30px;
}