@keyframes sliding-div {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(110%);
    }
}

#scrollViewPortHomeButtons {
    height: 50px;
    width: 880px;
    /*Used for debugging so I can see the size of the view port*/
    /*background-color: red;*/
    overflow: hidden;
}

#innerContainer {
    position: relative;
    animation: sliding-div 17s infinite;
    overflow: hidden;
}

/*God, this took for ever. Cloudflare caching is nice, but it's a pain in the ass to debug.*/