.background {
     animation :coloranimation 20s infinite;
}
@keyframes coloranimation {
    0% { background-color:red	 ;}
         50% { background-color:black	 ;}
    100% { background-color:white ;}
}