<style> .uberspan {     color: red;     font-size:36px;     font-family:'Impact', sans-serif;     -webkit-animation: myfirst 5s;      animation: myfirst 5s infinite;     -webkit-animation-iteration-count: infinite;     text-shadow: 5px 5px 1px #0000ff; display:inline-block; }  @-webkit-keyframes myfirst {     0%{-webkit-transform: rotate(0deg);}     100% {-webkit-transform: rotate(360deg);} } @keyframes myfirst  {     0%{transform: rotate(0deg);}     100% {transform: rotate(360deg);} } </style><span class='uberspan'>ÜBERCAT REIGNS</span>