<!DOCTYPE html>
<title>Example</title>
<style>
.springy-text {
color: white;
animation-name: springy-text;
animation-duration: 1s;
animation-timing-function: ease;
animation-delay: 0s;
animation-iteration-count: 1;
animation-direction: normal;
animation-fill-mode: forwards;
}
@keyframes springy-text {
0% {
letter-spacing: 1.2em;
100% {
letter-spacing: 0.1em;
color: orange;
</style>
<h3 class="springy-text">Animations!</h3>