
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: sans-serif;
    color: #fff;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 150px; /* Platz für Footer */
}
header {
    padding: 2rem;
}
h1 {
    font-size: 5rem;
}
h2 {
    font-size: 1.5rem;
    font-weight: normal;
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #eee;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
}
.footer-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.footer-bar a,
.footer-bar .footer-link {
    color: #eee;
    text-decoration: underline;
    cursor: pointer;
}
.footer-details {
    display: none;
    font-size: 0.8rem;
    background-color: rgba(50, 50, 50, 0.9);
    padding: 1rem;
    margin-top: 1rem;
    position: relative;
    bottom: 100%;
    left: 0;
    width: 100%;
    z-index: 9;
}
@media (max-width: 600px) {
    body {
        background-image: url('images/background.png');
    }
}
@media (min-width: 601px) and (max-width: 900px) {
    body {
        background-image: url('images/background.png');
    }
}
@media (min-width: 901px) and (max-width: 1400px) {
    body {
        background-image: url('images/background.png');
    }
}
@media (min-width: 1401px) {
    body {
        background-image: url('images/background.png');
    }
}


@media (max-width: 600px) and (orientation: landscape) {
    body {
        background-image: url('images/background.png');
    }
}
