 body {
            background-color: black;
            color: white;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            flex-direction: column;
        }

 img {
            width: 600px;
            height: 600px;
            border: 2px solid white;
            object-fit: cover;
        }
        
@media (max-width: 600px) {
            img {
                width: 200px; /* Kleinere Bildgröße für Handys */
                height: 200px;
            }

            body {
                height: auto;
                padding: 20px;
            }
