body {
    font-family: 'Futura', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow-x: hidden;
}

/* Container für das Bild */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    height: 100%;
    width: auto;
    min-width: 100vw; /* mindestens die volle Breite */
    background-image: url('hintergrund.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    z-index: -1;
}

header {
    background-color: rgba(245, 245, 245, 0.4);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

header img {
    height: 80px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

main {
    flex: 1;
    color: #FFFFFF;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    color: #FFFFFF;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(245, 245, 245, 0.4);
    color: #000000;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    z-index: 100;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 10px;
    }
}

