/* Globale Stile */
body {
    margin: 0;
    font-family: "Helvetica", Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    text-align: center;
}

header {
    background-color: #ffffff;
    padding: 10px 20px;
    border-bottom: 4px solid #000000;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 100px 20px 60px;
    position: relative;
}

.content-container {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

section {
    display: none;
}

.active-section {
    display: block;
}

.social-media-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 600px;
    display: flex; /* Flexbox-Layout für die gesamte Liste */
    flex-direction: column; /* Alle Elemente untereinander anordnen */
    align-items: center; /* Alle Elemente horizontal zentrieren */
}

.social-media-list li {
    display: flex; /* Flexbox-Layout für Icon und Text */
    align-items: center; /* Icon und Text vertikal zentrieren */
    justify-content: center; /* Icon und Text horizontal zentrieren */
    margin-bottom: 15px;
    width: 100%; /* Sorgt für einheitliche Breite */
}

.social-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px; /* Abstand zwischen Icon und Text */
    border-radius: 0; /* Keine abgerundeten Ecken */
}

.social-media-list a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    font-family: "Helvetica", Arial, sans-serif;
}

.social-media-list a:hover {
    text-decoration: underline;
}

.hidden-section {
    display: none;
}

h1, h2 {
    font-weight: bold;
}

img {
    max-width: 50%;
    border-radius: 25px;
    display: block;
    margin: 20px auto;
}

footer {
    background-color: #ffffff;
    padding: 10px 20px;
    border-top: 4px solid #000000;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    text-align: center;
}

footer p {
    margin: 0;
}