
        body {
            margin: 0;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: Arial, sans-serif;
            overflow: hidden; /* verhindert Scrollen */
        }

        .screensaver-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Hintergrundfarbe */
        .screensaver-background-color {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1; /* Hintergrundfarbe ganz unten */
        }

        /* Hintergrundbild */
        .screensaver-background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 2; /* Bild über Hintergrundfarbe */
        }

        /* Text und Inhalte */
        .screensaver-container {
            position: relative;
            z-index: 3; /* Text über Bild und Hintergrundfarbe */
            text-align: center;
            width: 100%;
            max-width: 400px;
        }

        .screensaver-container img {
            max-width: 100%;
            max-height: 300px;
            margin: 20px auto;
        }

        .screensaver-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .screensaver-middle-text {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .screensaver-button {
            margin-top: 20px;
            display: inline-block;
            padding: 10px 20px;
            background-color: #007bff;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1rem;
        }
