JSFiddle - React, Tailwind, and code Playground

by Greg Bowler

HTML

<h1>Mong</h1>

CSS

body {
    padding: 64px;
    text-align: center;
}

h1 {
    -webkit-animation: mongSpin 0.3s infinite linear;
    display: inline-block;
}

@-webkit-keyframes mongSpin {
    0% {
        -webkit-transform: 
            scale(5)
            rotate(360deg)
            ;
    }
    100% {
        -webkit-transform: 
            scale(1)
            rotate(0deg)
            ;
    }
}