
/* SET */

header {
    background-image: url("background-1.png"), url("background-2.png");
    background-size: auto 480px;
    background-repeat: repeat-x;
    background-position: center;
    animation: background 120s infinite;
}

/* ANIMATED */

@keyframes background {
    0%, 100% {background-position-x: left, 600px;}
    50% {background-position-x: right, 0px;}
}