Bye, Felicia!

HTML
<span class="bye">👋 Bye, Felicia <img src="https://i.imgur.com/jVllxkP.png"></span>
CSS
body { width: 100vw; height: 100vh; display: flex; align-items: center; justify-content: center; font-family: sans-serif; font-weight: 200; } .bye { font-size: 95pt; text-align: center; animation: waver 1s alternate infinite; transform-origin: 50% 90%; animation-timing-function: ease-in-out; } .bye img { width: 200px; } @keyframes waver { 0% {transform: rotate(-25deg);} 100% {transform: rotate(30deg);} }
JAVASCRIPT
Expand for more options Login