@keyframes move { 0% { left: -20%; top: 30%; } 33% { left: 26%; top: 35%; } 66% { left: 72%; top: 25%; } 100% { left: 120%; top: 30%; } } 


#santa {
    position: fixed;
    top: 120%; left: 120%;
    z-index: 10;
    
    animation-name: move;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-timing-function: linear;
    animation-duration: 10s;
}
