#bitmap {
    background: url("/content/9af547dca04b3784867147c5c2b71eee44c2994b708e87e289a13cd7bfb1e827i0") repeat-X;
    animation: movebg 10s linear infinite;
    background-size: auto;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes movebg {
    0% {
        background-position: 1324px
    }
    100% {
        background-position: 0
    }
}
