JSFiddle - React, Tailwind, and code Playground

by Christian Sonne

HTML

<a class="whatever" href="">To shave</a>

CSS

.whatever {
  display: inline-block;
  padding: 10px;
  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-align: center;
  margin: 25px;
}

a:after {
  content: "";
  height: calc(100% + 25px);
  width: calc(100% + 25px);
  border: 5px black solid;
  position: absolute;
  bottom: -5px;
  right: -5px;
}