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

body {
    font-family: Arial, sans-serif;
    color: black;
}

#wrapper {
    max-width: 960px;
    margin: 0px auto;
    margin-top: 20px;
    padding: 20px;
}

img {width: 300px;
 }

.bild {
    width: 100%;
    height: 100px;
    margin-bottom: 30px;
}

#content {
    width: 100%;
    height: 520px;
    float: right;
    margin-top: 20px;
}

.content-01 {
    margin-bottom: 3em;
}
.content-03 {
    margin-top: 3em;
} 

/* Text und Layout-Anpassung */
h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}
h2 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

p {
    font-size: 1.2em;
    margin-bottom: 0.4em;
}

a {
    color: black;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Media Query für kleinere Bildschirme */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.3em;
    }
    p {
        font-size: 1em;
    }
}

 

 