JSFiddle - React, Tailwind, and code Playground
by Christian Sonne
HTML
<a href="">To shave</a>
CSS
a {
display: inline-block;
width: 290px;
height: 80px;
line-height: 80px;
padding: 0 25px 25px 0;
margin: 25px 0 0 25px;
border: 5px black solid;
color: black;
text-transform: uppercase;
font-size: 55px;
font-family: Arial, sans-serif;
font-weight: 100;
text-decoration: none;
position: relative;
}
a:after {
content: "";
height: 100%;
width: 100%;
border: 5px green solid;
position: absolute;
top: -25px;
left: -25px;
}