/* =====================================================
   GRUNDLAYOUT
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f8f8f8;
}

.container {
    display: flex;
    min-height: 800px;
}

main {
    flex: 1;
    padding: 20px;
}

.vorstellung,
.news {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.vorstellung h2,
.news h2 {
    color: #205070;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #205070;
}

.vorstellung h3,
.news h3 {
    color: #205070;
    margin-top: 20px;
    margin-bottom: 10px;
}

.vorstellung p,
.news p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.mitte {
    text-align: center;
    margin-top: 20px;
}
