/* Grundlayout */
body {
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    background: var(--primary-white);
    overflow-x: hidden;
    font-weight: 300;
}

/* Container */
h1, .text-box {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

p{
    margin:0;
    padding:0;
}

/* Überschrift */
h1 {
    text-align: center;
    margin-top: 2rem;
}

/* Absätze */
.text-box {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    border: 3px solid rgba(0, 0, 0, 0.08);
}



/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    body {
        padding: 1.2rem;
        line-height: 1.75;
    }

    h1 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    p {
        font-size: 1rem;
        padding: 1.1rem;
        border-radius: 8px;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem;
    }

    h1 {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }

    p {
        font-size: 1.05rem;
        padding: 1rem;
    }
}