* {
    margin: 0;
    padding: 0;
}

.sprite {
    width: 1366px;
    height: 768px;
    background: url('img/artboard.png') 0 0 no-repeat;
    animation: play 1500ms steps(10) infinite;
}

@keyframes play {
    0% { background-position: 0px; }
    100% { background-position: -13660px; }
}
 