.post-wrapper{
    padding-top: 150px;
    padding-bottom: 150px;
}
.post{
    overflow-wrap: break-word;
    overflow: hidden;

    max-width: 930px;

    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    transition: max-width 1s;

    border: 1px solid var(--BRIGHT-COLOR);
    border-radius: 15px;
    background-color: var(--DARK-COLOR);

    box-shadow: 0 5px var(--BRIGHT-COLOR);

    font-size: 1.5rem;
}
.post-content{
    width: 900px;
    margin-top: 15px;
    margin-left: 15px;
    margin-right: 15px;
}
.thumbnail{
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    width: 900px;
    height: 506px;
    background-size: cover;
}
h1{
    display: contents; /*zeige den gesamten Titel an, egal wie lang der ist*/
    margin-top: 5px;
    font-size: 3rem;
    height: 2.8rem;
}
.datum{
    float: right;
}
.inhalt{
    margin-top: 15px;
    margin-bottom: 15px;
}
.post-button{
    display: flex;

    justify-content: center;
    align-items: center;
}
.post-button a{
    display: flex;

    justify-content: center;
    align-items: center;

    height: 100px;

    padding-left: 20px;
    padding-right: 20px;

    transition: width 1s, font-size 1s, --COLOR-AMOUNT 0.25s; 
    background: linear-gradient(180deg, var(--DARK-COLOR) var(--COLOR-AMOUNT), var(--BRIGHT-COLOR));
}
.post-button a:hover{
    cursor: pointer;
    --COLOR-AMOUNT: 60%;
}
/* || RESPONSIVE*/
@media (max-width: 1010px) and (min-height: 1200px){ /*Smartphone hochkant*/
    .post-wrapper{
        padding-top: 290px;
    }
    .post{
        width: 960px;
        border-radius: 30px;
        box-shadow: 0 10px var(--BRIGHT-COLOR);
        font-size: 3rem;
    }
    .post-content{
        width: 870px;
        margin-top: 30px;
        margin-left: 30px;
        margin-right: 30px;
    }
    .thumbnail{
        width: 870px;
        height: 489px;
    }
    h1{
        margin-top: 10px;
        font-size: 4rem;
    }
    h5{
        font-size: 2rem;
    }
    .datum{
        
    }
    .inhalt{
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .post-button a{
        width: 500px;
        height: 200px;
        font-size: 3rem;
    }
}