/* Allgemeine Einstellungen */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom, #1a1a1a, #000000);
    color: #f5f5f5;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

header {
    background: #000;
    text-align: center;
    padding: 50px 20px;
    border-bottom: 5px solid #ff0000;
}

header h1 {
    font-size: 3rem;
    color: #ff0000;
    text-shadow: 0 0 20px #ff0000, 0 0 30px #ff3333;
    animation: pulse 2s infinite;
}

header p {
    font-size: 1.2rem;
    color: #cccccc;
}

nav {
    background: #111;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 10px 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
}

/* Hauptinhalt */
main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    background: #222;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
    animation: fadeIn 1.5s ease-in-out;
}

section h2 {
    font-size: 2rem;
    border-left: 5px solid #ff0000;
    padding-left: 10px;
    color: #ff3333;
    text-shadow: 0 0 10px #ff6666;
}

section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #dddddd;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #777;
    border-top: 5px solid #ff0000;
}

footer a {
    color: #ff6666;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px #ff0000;
}

/* Animationen */
@keyframes pulse {
    0%, 100% {
        text-shadow: 0 0 20px #ff0000, 0 0 30px #ff3333;
    }
    50% {
        text-shadow: 0 0 30px #ff0000, 0 0 40px #ff6666;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
