.blink1 {animation: blinker1 1s linear infinite;} .blink2 {animation: blinker2 1s linear infinite;} @keyframes blinker1 { 0% { color:#fff; } 49% { color:#fff; } 50% { color:#fce047; } 100% { color:#fce047; } } @keyframes blinker2 { 0% { color:yellow; } 49% { color:yellow; } 50% { c…