html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    background-color: #999;
    background-image: url("/img/wallpaper.webp");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;

    font-family: Arial, sans-serif;
}

/* fixed nur auf größeren Geräten, damit Mobile nicht zickt */
@media (min-width: 1024px) {
    body {
        background-attachment: fixed;
    }
}

/* optionaler Wrapper für zentrierten Seiteninhalt */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 40px 20px;
    box-sizing: border-box;
}

/* Beispiel für mittigen Schriftzug / Hero-Titel */
.hero-title {
    margin: 0;
    font-size: clamp(2.2rem, 6vw, 5rem);
    line-height: 1;
    font-weight: 900;
    color: #ffffff;
    text-shadow:
        0 3px 10px rgba(0,0,0,0.35),
        0 0 30px rgba(0,0,0,0.25);
}

/* optionaler Untertitel */
.hero-subtitle {
    margin-top: 16px;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}