#myelement
{
max-width: auto;
height: 600px;
font-size: 2em;
font-weight: bold;
margin: 50px auto;
text-align: center;
-webkit-animation: colorchange 5s linear 1s infinite alternate;
animation: colorchange 5s linear 1s infinite alternate;
}
#myelement i{
font-size: 50px;
color: #fff;
text-align: center;
line-height: 400px;
}
@keyframes colorchange
{
0% { background-color: #00F; }
25% { background-color: #F00; }
50% { background-color: #0F0; }
75% { background-color: #F0F; }
100% { background-color: #00F; }
}