* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh; /* statt fester Höhe */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* zentriert, aber erlaubt Scroll falls nötig */
    align-items: center;
    background: #e34930;
    font-family: system-ui, sans-serif;
    text-align: center;
    color: #fff6e5;
    padding: 20px;
}

.logo {
    width: min(350px, 70vw); /* skaliert smart */
    height: auto;           /* verhindert Verzerrung */
    display: block;
    border-radius: 50%;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.description {
    max-width: 750px;
    width: 90%;
    font-size: 1.1rem;
    line-height: 1.55;
    background: rgba(0, 0, 0, 0.18);
    padding: 22px 26px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* mobile optimierung */
@media (max-height: 700px) {
    body {
        justify-content: flex-start; /* verhindert Abschneiden */
        padding-top: 40px;
    }

    .logo {
        width: min(280px, 60vw);
    }
}
