#buchstaben{
    display: flex;
    flex-direction: column;
    width: 80%;
    min-height: 350px;
    background-color: rgb(206, 197, 201);
    border: solid;
    align-items: center;
    justify-content: center;
    margin: 2%;
    border-radius: 3%;
}
#divDrag{
    width: 60%;
    height: 250px;
    background-color: rgb(192, 134, 161);
    text-align: center;
    vertical-align: middle;
    margin: 2%;
    border-radius: 3%;
    display: table;
    cursor: pointer;
}
#text{
    text-align: center;
    margin: 0 auto;
    color:gray;
    display: table-cell; 
    vertical-align: middle; 
}
.result{
    height: auto;
    background-color: lemonchiffon;
    display: flex;
    justify-content: center;
    padding: 2%;
    border-radius: 3%;
    margin-bottom: 2%;
}
#buchstaben tr:nth-child(even) {background: #CCC}
#buchstaben tr:nth-child(odd) {background: #FFF}
#buchstaben tr{
    width: 450px;
    height: 30px;
}
#buchstaben td{
width: 200px;
font-size: 22px;
text-align: center;
}