/* HTML und Body auf volle Höhe */ html, body { height: 100%; overflow: hidden; /* verhindert Scrollen */ margin: 0; padding: 0; } /* Hauptinhalt auf Viewport-Höhe */ .Main-content, .Site-wrapper { height: 100vh; overflow: hidden; } /* Hero-Section auf volle Höhe */ .welcome .hero-section { height: 100vh; display: flex; justify-content: center; align-items: center; /* zentriert Inhalt vertikal */ } /* Alle anderen Sections ausblenden, falls nötig */ .welcome .sqs-block { display: none; }