JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<head>
<style>
a{
  font-size: 24px;
  text-decoration: underline;
  color: black;
  -moz-text-decoration-color: red;
}
a:hover {
  color: blue;
  -moz-text-decoration-color: papayawhip;
}
</style>
</head>
<body>
    <a href="http://mozilla.org">black text with red underline and blue hover</a>
</body>
</html>