JSFiddle - React, Tailwind, and code Playground

HTML

<a class="botoncta" href="#"> Link </a>

CSS

.botoncta {background:#fff;
display:block;
margin-left: auto;
margin-right: auto;
width: 50px;
}

.botoncta:link    { color: red; font-size:3em }    /* unvisited links */
.botoncta:visited { background-color: green; color:orange }   /* visited links   */
.botoncta:hover   { background-color: yellow; color: brown } /* user hovers over link*/
.botoncta:active  { background-color: lime; color:black }   /* active links    */