
        /* Contenedor de texto de fondo */
        .background-text {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
            display: flex;
            flex-direction: column;
        }

        /* Estilo de cada línea de texto */
        .line {
            font-size: 48px;
            color: rgba(165, 42, 42, 0.15);
            white-space: nowrap;
        }

        /* Animaciones para las líneas de texto */
        .move-left {
            animation: moveLeft 10s linear infinite;
        }

        .move-right {
            animation: moveRight 10s linear infinite;
        }

        @keyframes moveLeft {
            0% {
                transform: translateX(100%);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        @keyframes moveRight {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(100%);
            }
        }
