#holiday-container{
    background-image:url('../../media/holidays/thanks.jpg');
    height:20vh;
    width:100%;
    background-repeat: no-repeat;
    background-size:contain;
    background-position-x:0%;
    background-color:#A26B35;
    animation:colorChange 10s forwards alternate infinite;
}
@keyframes colorChange {

    100%{
        background-position-x:100%;
    }
    
}