.Beitrag {

   
    width: inherit;
    height: fit-content;
    border-radius: 5px;
    background: linear-gradient(to right, rgb(230, 230, 230) 40%, whitesmoke 40%);
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;
    overflow-y: hidden;
    overflow-x: hidden;
    line-height: 28px;

    
}

h3 {
    text-align: left;
    display: block;
    font-size: 28px;
    font-weight: bold;
    color:rgb(73, 118, 148);
    margin-block-start: auto;

 }

 #TileTable {
    width: inherit;
    height: fit-content;
    border-radius: 5px;
    background: linear-gradient(to right, rgb(230, 230, 230) 40.1%, whitesmoke 40.1%);
    margin-top: 10px;
    margin-bottom: 10px;
    overflow-y: hidden;
    overflow-x: hidden;
    line-height: 28px;
}

#TileTable td {
    vertical-align: middle;
    padding: 20px;
    line-height: 150%;
}

#TileTable td img {
    width: 99%;
    opacity: 0.85;
    display: inline;
    margin-top: 5px; /*Wichtig für Zentrierung, weil Link-Div irgenwie stört*/
    
}

#TileTable td:first-child {
    width: 40%;
    text-align: center;

}

.SmallTable{
    display: none;
}

@media all and (max-width: 900px) {

 
    .BigTable{
        display: none;
    }
    .SmallTable{
        display: block;
    }

    .Beitrag {

        background: none;
        background-color: whitesmoke;
        padding-top: 10px;

       
        
    }
    .Beitrag img {
        box-sizing: border-box;
        width: 100%;
        float: none;
        margin-right: auto;
        margin-left: auto;
        margin-top: 15px;
        margin-bottom: 15px;
   
    }

    .Beitrag h3 {
        
        font-size: 24px;
    }

}

