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: 85px;
  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;
  text-indent: 10px;
}

a:after {
  content: "";
  height: 100%;
  width: 100%;
  border: 5px black solid;
  position: absolute;
  top: -25px;
  left: -25px;
}