
body {
    font-family: 'Droid Sans', Arial, sans-serif;
    background: #f9f9f9;
    color: #222;
    padding: 20px;
    line-height: 1.6;
}

header h1 {
    font-size: 2em;
    margin-bottom: 1em;
}

a {
    color: #336699;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.image-container img {
    display: block;
    margin: 20px auto;
    max-width: 800px;
    width: 100%;
    height: auto;
}

.text-container {
    margin-top: 30px;
    font-size: 1.1em;
}

nav ul {
    list-style: none;
    padding: 0;
}
nav li {
    margin-bottom: 10px;
}
nav a {
    font-weight: bold;
}

/* Mobile Optimierungen */
@media (max-width: 768px) {
    body {
        padding: 10px;
        font-size: 1em;
    }

    header h1 {
        font-size: 1.5em;
    }

    nav ul {
        padding: 0;
    }

    nav li {
        margin-bottom: 15px;
        font-size: 1.2em;
    }

    .image-container img {
        max-width: 100%;
        height: auto;
    }

    .text-container {
        font-size: 1em;
        margin-top: 20px;
    }
}
