body {
    background-color: #fff9c4; /* Zartes, helles Gelb */
    font-family: Verdana, Geneva, sans-serif;
    font-size: 20px;
    font-style: italic;
    font-weight: bold;
}

/* Textausrichtung */
.ausrichtung {
    text-align: center;
}

/* Textfarbe */
.farbe {
    color: #ff0000;
}

/* Hintergrundfarbe */
.hintergrund {
    background-color: #19a9d7;
    padding: 10px;
}

/* Comic Sans MS für alle Überschriften */
h1, h2, h3, h4, h5, h6 {
    font-family: "Comic Sans MS", cursive, sans-serif;
}

h2 {
    font-weight: bold !important;
    color: red;
}

/* Border-Beispiel */
.border-rund {
    border: 3px solid red;   /* Rahmen */
    border-radius: 10px;     /* Runde Ecken */
    padding: 5px;
}

/* List-Style-Type Beispiel */
.liste-kreis {
    list-style-type: circle; 
}

.liste-kein {
    list-style-type: none; /* Keine Punkte */
}

/* Display Beispiele */
.block {
    display: block; /* Nimmt gesamte Zeile ein */
}

.inline {
    display: inline; /* Reihung wie Text */
}

.inline-block {
    display: inline-block; /* Mischung aus beidem */
}

.hidden {
    display: none; /* Element wird nicht angezeigt */
}