/* Allgemeine Stile */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    color: white;
    overflow: hidden;
}

.vanta-container {
    display: flex;
    height: 100vh;
    position: relative;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background-color: rgba(10, 10, 10, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
}

.sidebar img {
    width: 120px;  /* Etwas größere Bildgröße für bessere Sichtbarkeit */
    margin-bottom: 20px;
}

.sidebar a {
    text-decoration: none;
    color: white;
    padding: 12px 20px;  /* Etwas mehr Padding für bessere Klickfläche */
    margin: 12px 0;  /* Etwas mehr Abstand zwischen den Links */
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    width: 80%;
}

.sidebar a.active {
    font-weight: bold;
    border-left: 4px solid rgba(0, 122, 255, 1);
    padding-left: 16px;
}

.sidebar a:hover {
    background: rgba(0, 122, 255, 0.3);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    margin-left: 250px; /* Der Inhalt verschiebt sich, damit er nicht mit der Sidebar überlappt */
}

h1 {
    font-size: 3em;  /* Größere Schriftgröße für die Hauptüberschrift */
    text-align: center;
    margin-bottom: 20px;
}

.content-box {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;  /* Mehr Abstand innerhalb der Box */
    border-radius: 12px;  /* Weichere Ecken für die Box */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);  /* Etwas stärkere Box-Schatten */
    max-width: 900px;
    margin: 0 auto;
}

.content-box h2 {
    font-size: 1.8em;  /* Größere Schriftgröße für die Unterüberschriften */
    margin-top: 20px;
    color: #0f90d8;
}

.content-box p {
    line-height: 1.6;
    margin-bottom: 15px;  /* Mehr Abstand zwischen Absätzen */
}

.content-box a {
    color: #00d1ff;
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;  /* Etwas kleinere Schriftgröße für den Footer */
}
