* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #cfeb99;
    color: #4c1f68;
    line-height: 1.6;
}

/* HEADER */
header {
    text-align: center;
    padding: 15px 20px;
}

.titelzeile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: row;
}



/* NAVIGATION */
nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1px;
    padding: 10px 0;
}

nav a {
    display: inline-block;
    padding: 8px 12px;
    background: #cfeb99;
    color: #4c1f68;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.2s ease;
}

nav a:hover {
    opacity: 0.85;
}

/* LAYOUT */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding:  20px;

}

.card {
    padding: 20px;
}

/* TAUBE */
.center-img {
    display: block;
    width: 100%;
    max-width: 940px;
    margin: 10px auto;
}

/* CONTENT */
.content-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.text {
    flex: 1;
}

/* BILDER */
.bild img {
    width: 160px;
    height: auto;
    display: block;
}

/* TEXT ABSTAENDE */
h1,
h2,
h3,
p {
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
}
.h4-mit-herz {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.herz-klein {
    width: 30px;
    height: auto;

}