body {
    background-color: #EEEAD9;
    color: #000;
    font-family: 'ABeeZee', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.logo {
    width: 40vw; /* Desktop: 40% der Bildschirmbreite */
    max-width: 600px; /* Fallback für sehr große Bildschirme */
    min-width: 200px; /* Minimum-Größe */
    height: auto;
    display: block;
}

/* Mobile devices - 90% width */
@media (max-width: 1024px) {
    .logo {
        width: 90vw; /* 90% der Bildschirmbreite auf Mobile */
        max-width: 90vw; /* Kein max-width Limit auf Mobile */
    }
}

h1 {
    font-weight: normal;
    font-style: normal;
    text-align: center;
}

p {
    line-height: 1.6;
    text-align: center;
}