/* Allgemeiner Hintergrund der Seite */
body {
    background-color: #f0f0f0; /* Hellgrau */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Container, der Bild und Unterschrift enthält */
.container {
    text-align: center;
}

/* Styling für das Bild */
.imageloader {
    width: 1024px;
    height: auto;
    aspect-ratio: 1 / 1;
}

