body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #030101;
    position: sticky;
}

.background-logos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Verhindert, dass Logos die Benutzerinteraktion blockieren */
}

.logo {
    position: absolute;
    top: 1000;
    left: 1000;
    opacity: 0.8;
}

.logo1 {
    top: 10px;
    left: 10px;
    width: 80px;
}

.logo2 {
    bottom: 10px;
    right: 10px;
    width: 100px;
}

.content {
    position: relative;
    z-index: 1; /* Damit der Text über den Logos steht */
}



h1, h2, h3, ul, li, p1 {
    text-align: center;
    font-size: 3vw; /* Etwas größere Schrift für bessere Lesbarkeit */
 } 

p {
    text-align: center;
 } 

.Background {
    height: 50vh; /* Kleinere Höhe für mobile Geräte */
}

header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

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

main {
    padding: 20px;
    background-color: rgba(255, 254, 254, 0.1);
    min-height: 80vh;
}

footer {
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}