
        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 4rem;
        }

        body {
            margin: -4rem 0 0;
            font-family: sans-serif;
            background: #fdfdfd;
            color: #111;
            line-height: 1.6;
        }

        nav {
            background: #fff;
            border-bottom: 1px solid #ddd;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
            text-align: center;
        }

        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        nav li {
            display: inline;
            margin: 0 1rem;
        }

        a {
            text-decoration: none;
            color: #111;
            font-weight: bold;
            transition: color 0.2s ease;
        }

        a:hover {
            color: #555;
            text-decoration: underline;
        }

	a[href^="http"]::before {
		content: '⚠️\00a0';
	}
	a[href^="http"]::after {
		content: '\00a0(externe\00a0Seite)\00a0⚠️';
	}

        main {
            overflow-x: hidden;
        }

        section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            text-align: center;
            min-height: 100vh;
            overflow-x: hidden;
        }

        h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }

        p {
            max-width: 560px;
            margin-bottom: 1.5rem;
        }

        .link-button {
            display: inline-block;
            background: #000;
            color: #fff;
            padding: 0.8rem 1.2rem;
            text-decoration: none;
            font-weight: bold;
            border-radius: 4px;
            transition: background 0.3s ease;
        }

        .link-button:hover {
            background: #444;
            color: #fff;
            text-decoration: none;
        }

        #weitere-links ul {
            columns: 2 300px;
            gap: 2rem;
            padding: 0;
            list-style: none;
        }

        #weitere-links li {
            margin-bottom: 0.5rem;
        }

        footer {
	    min-height: 100vh;
            background: #f0f0f0;
            padding: 2rem;
            font-size: 0.9rem;
        }

        footer section {
	    min-height: unset;
            max-width: 800px;
            margin: 0 auto 2rem auto;
        }

        footer h2 {
            margin-top: 2rem;
        }
