       body {
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            height: 100vh;
            font-family: Arial, sans-serif;
        }
        
        #bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        
        .content {
            position: relative;
            z-index: 1;
            color: white;
            text-align: center;
            padding: 20px;
        }

        .text-container {
            position: relative;
            height: 60px;
            width: 100%;
            text-align: center;
            overflow: hidden;
        }
        
        .text-slide {
            position: absolute;
            width: 100%;
            font-size: 24px;
            opacity: 0;
            animation: textRotate 9s linear infinite;
        }
        
        .text-slide:nth-child(1) {
            animation-delay: 0s;
        }
        
        .text-slide:nth-child(2) {
            animation-delay: 3s;
        }
        
        .text-slide:nth-child(3) {
            animation-delay: 6s;
        }
        
        @keyframes textRotate {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            10% {
                opacity: 1;
                transform: translateY(0);
            }
            30% {
                opacity: 1;
                transform: translateY(0);
            }
            40% {
                opacity: 0;
                transform: translateY(-20px);
            }
            100% {
                opacity: 0;
                transform: translateY(-20px);
            }
        }

        a {
            color: white;
            text-decoration: none;
        }

        a:hover {
            color: yellow;
        }

        a:active {
            color: orange;
        }