body{
    background-color: rgb(255, 70, 215);
}
div{
    color: bisque;
}
div{
    background-color: deeppink;
}
.post{
    background-color: deeppink;
}
h1 {
 font-size: 200px;
    color: bisque;
    line-height: 0,2px;
}
.header { 
justify-content: space-between; align-items: center;
}

a:hover{
    color: aquamarine;
}

.beschriftung { font-size: 0.72rem; color: rgb(136, 136, 136); margin-top: 8px; margin-bottom: 24px; line-height: 1.6; display: block; }
.flex-demo { background-color: rgb(255, 0, 166); padding: 16px; border-radius: 8px; border: 2px solid rgb(26, 26, 26); margin-bottom: 8px; }
.flex-demo span { background-color: rgb(26, 26, 26); color: rgb(255, 255, 255); padding: 10px 16px; font-size: 0.8rem; border-radius: 4px; }
.flex-space-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; height: 80px; }
.flex-column { display: flex; flex-direction: column; row-gap: 8px; column-gap: 8px; max-width: 200px; }
.flex-wrap-demo { display: flex; flex-wrap: wrap; row-gap: 8px; column-gap: 8px; max-width: 300px; }