JSFiddle - React, Tailwind, and code Playground
HTML
<div class="blockLinks">
<a href="#" target="_blank">your link title</a>
<a href="#" target="_blank">another link title</a>
</div>
CSS
div.blockLinks {
width: 100%;
margin: -7px 0 -7px 0;
padding: 7px 0 7px 0;
text-align: center;
}
div.blockLinks > a {
display: block;
margin: 3px 0 3px 0;
padding: 10px 0 10px 0;
font: bold small-caps 17px Georgia;
background-color: #FFB623;
color: black;
opacity: .85;
text-decoration: none;
}
div.blockLinks > a:hover{
opacity: 1;
}