/* style.css */
body {
  background-color: pink;
  font-family: Arial, sans-serif;
  color: black; /* Für guten Kontrast */
  text-align: center;
  margin: 0;
  padding: 0;
}
.logo {
    width: 30%;
    max-width: 200px;    /* auf mobilen Geräten */
    height: auto;
    display: block;
    margin: 20px auto;   /* zentriert und etwas Abstand */
}

/* Auf größeren Bildschirmen (z. B. Desktop): Logo kleiner darstellen */
@media (min-width:180px) {
    .logo {
        max-width: 120px;
    }
}

