JSFiddle - React, Tailwind, and code Playground

by Dhanck

HTML

<div class="square">
  <div class="text">St</div>
</div>

CSS

.square{
  width:75px;
  height:75px;
  border:5px solid #ff4276;
  background:#2a0003;
}
.text{
  color:#ff4276;
  text-align:center;
  font-size:50px;
  font-family: Segoe UI;
  font-weight: 500;
  padding: 2px 0px;
}