body {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    color: black;
}

header {
    margin: 8px 0;
}

.mitte {
    display: flex;
    justify-content: center;
    align-items: center;
}

#teaser {
    width: 100%;
    height: 300px;
}
#teaser img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (min-width: 800px) {
    #teaser {
        height: 400px;
    }
}

/* Korrigierte Sektion */
.about_me_section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about_me_section img {
    width: 300px;
    max-width: 90%;
    height: auto;
    border: 10px solid #ccc;
}

.about_me_container {
    flex: 1;
    min-width: 280px;
    max-width: 600px;
}

.about_me_container h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about_me_container p {
    text-align: justify;
    line-height: 1.7;
    font-size: 16px;
}

/* Footer unten halten */
footer {
    text-align: center;
    margin-top: 80px;
    padding: 30px 0;
}

.startseite {
    color: #0077cc;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}
.startseite:hover {
    color: #007bff;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .about_me_section {
        flex-direction: column;
        text-align: center;
    }

    .about_me_section img {
        margin-bottom: 20px;
    }

    .about_me_container h2 {
        font-size: 8vw;
    }

    .about_me_container p {
        font-size: 4vw;
        padding: 0 10px;
    }
}
