JSFiddle - React, Tailwind, and code Playground
by Vladimir
HTML
<a>Menu</a>
CSS
a {
text-align:center;
font-size: 0.8em;
font-weight: normal;
color: #737373;
transition: all .20s linear;
-moz-transition: all .20s linear;
-webkit-transition: all .20s linear;
-o-transition: all .20s linear;
}
a:hover {
text-align:center;
font-size: 1.0em;
font-weight: bold;
color: #F00;
transition: all .20s linear;
-moz-transition: all .20s linear;
-webkit-transition: all .20s linear;
-o-transition: all .20s linear;
}