/* 🌟 Allgemeines Impressum-Layout (angepasst an Hauptseite) 🌟 */
body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #222, #111);
    color: white;
    margin: 0;
    padding: 0;
}

/* 🌟 Header für das Impressum */
header {
    background: #1e1e1e;
    padding: 20px;
    font-size: 24px;
    text-transform: uppercase;
    box-shadow: 0px 4px 10px rgba(0, 255, 204, 0.3);
}

/* 🌟 Haupt-Container */
.container {
    max-width: 700px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 255, 204, 0.2);
    backdrop-filter: blur(10px);
}

/* 🌟 Abschnittsüberschriften */
h2 {
    color: #00ffcc;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* 🌟 Texte */
p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* 🌟 Trennlinien */
.divider {
    width: 50%;
    height: 2px;
    background: #00ffcc;
    margin: 30px auto;
    opacity: 0.7;
}

/* 🌟 Glühender Zurück-Button */
.glow-button {
    display: inline-block;
    padding: 12px 20px;
    margin-top: 20px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid #00ffcc;
    border-radius: 5px;
    font-size: 18px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.glow-button:hover {
    box-shadow: 0 0 15px #00ffcc;
    background-color: #00ffcc;
    color: black;
}

/* 🌟 Footer */
footer {
    background: #1e1e1e;
    padding: 10px;
    margin-top: 20px;
}

footer a {
    color: #00ffcc;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* 🌟 Fade-in Animation für einen coolen Effekt */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🌟 Mobile Optimierung */
@media screen and (max-width: 768px) {
    .container {
        max-width: 90%;
        padding: 20px;
    }
}
