/* Allgemeine Stile */
img {
  width: 500px;
  height: 500px;
  object-fit: contain; /* oder "contain" je nach Effekt */
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #ffffff;
    margin: 0;
    padding: 20px;
    text-align: center;
}

/* Text-Stil */
p {
    font-size: 18px;
    display: inline;
    color: #ddd;
}

/* Links */
a {
    font-size: 18px;
    font-weight: bold;
    color: #00c6ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffcc00;
}

/* Container für bessere Struktur */
