.allergenen
{
    height: 400px;
}

.post
{
    width: calc(100% - 50px);
    height: auto;
    background-color: beige;
    margin-top: 20px;
    margin-right: 25px;
    margin-left: 25px;
}

td
{
    padding: 30px;
    border: 1px solid #ccc;
    text-align: left;
    width: 100%;
}

tr
{
    display: flex;
    flex-direction: row;
    width: 100%;
}

table {
    border-collapse: collapse;
    width: 100%;
}
  
th
{
    text-align: center;
}

@media screen and (max-width: 480px) and (max-height: 1000px) {

    .allergenen
    {
        height: 120px;
    }

    tr
    {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    td
    {
        width: auto;
    }

}

@media screen and (min-width: 500px) and (max-width: 1100px) and (max-height: 1400px) { /*phone landscape*/
    .allergenen
    {
        height: 200px;
    }
}