    #wolff-center {
        white-space: nowrap;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
        display: block;
        position: relative;
    }

    #wolff-center span {
        display: inline-block;
        padding-left: 100%;
        animation: scroll linear infinite;
        white-space: nowrap;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-100%);
        }
    }