        .fullscreen-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../0M2A2321_(3x2).webp'); /* Pfad anpassen */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transform: scaleY(0);
            transform-origin: top;
            animation: unroll 1.5s ease-in-out forwards;
            z-index: -1;
        }

        .content {
            position: relative;
            color: white;
            text-align: center;
            padding-top: 50px;
            z-index: 1;
			text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        @keyframes unroll {
            0% {
                opacity: 0;
                transform: scaleY(0);
            }
            80% {
                opacity: 1;
                transform: scaleY(1.1);
            }
            100% {
                opacity: 1;
                transform: scaleY(1);
            }
        }      