/* Grundfarben */
:root {
    --background-color: #c7d5b1;
    /* sanftes grünlich-beiges Hintergrund */
    --text-color: #1f1f1f;
    --highlight-color: #f5e7c0;
    --accent-color: #5e7c5f;
    --font-family: 'Poppins', sans-serif;
}

/* Grundlayout */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-family);
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    border-radius: 12px;
    line-height: 1.6;
}

/* Überschriften */
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Hervorhebungen */
strong {
    font-weight: 600;
}

/* Links */
a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Container ohne eigenen Hintergrund */
.container {
    background-color: transparent;
    padding: 0;
    /* optional: wenn du keinen zusätzlichen Innenabstand willst */
    border-radius: 0;
    /* optional */
    box-shadow: none;
    /* optional */
}

/* Textblöcke */
p {
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        margin: 20px;
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }
}