body {
    font-family: 'Jura', Arial, sans-serif;
    background: #121212;
    color: #ffffff;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.header-banner {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #010101, black 50%, black 50%, #010101); /* Übergang von #010101 nach Schwarz */
    flex: 0 0 auto; /* Fixierte Höhe */
}

.logo {
    width: auto;
    max-width: 100%;
    max-height: 250px; /* Maximale Höhe des Logos */
    position: relative;
    z-index: 1;
    background-color: #010101; /* Hintergrundfarbe des Logos */
}

.scroll-container {
    flex: 1 0 auto; /* Flexibles Scrollen */
    overflow-y: auto; /* Vertikales Scrollen */
}

.container {
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 20px; /* Abstand innen */
}

a {
    color: #D3D3D3; /* Hellgrau für die Links */
}

a:hover {
    color: #FFFFFF; /* Helleres Grau oder Weiß bei Hover */
}


h1 {
    font-size: 3em;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons a {
    margin: 0 10px;
    display: flex;
    align-items: center;
    font-size: 48px; /* Einheitliche Größe für Icons */
    text-decoration: none; /* Entfernen des Unterstrichs */
}


.social-icons img {
    width: 48px; /* Vergrößerte Breite */
    height: 48px; /* Vergrößerte Höhe */
    display: inline-block;
}

.footer {
    width: 100%;
    text-align: center;
    padding: 5px 0; /* Halbiertes Padding */
    background: #1e1e1e; /* Hintergrundfarbe des Footers */
    flex: 0 0 auto; /* Fixierte Höhe */
}

