<h1>Animated background colours</h1>
@keyframes color {
0% { background: #33CCCC; }
20% { background: #33CC36; }
40% { background: #B8CC33; }
60% { background: #FCCA00; }
80% { background: #33CC36; }
100% { background: #33CCCC; }
}
body {
background: #33CCCC; /* Fallback */
animation: color 9s infinite linear;
text-align: center;
padding: 2em;
}
h1 {
text-align: center;
font-family: 'Kavoon', sans-serif;
font-size: 2.5em;
color: white;
}