JSFiddle - React, Tailwind, and code Playground

HTML

<div class="free">
    <p>Text</p>
</div>

CSS

.free {
    display: inline-block;
    -webkit-border-radius: 4;
   -moz-border-radius: 4;
    border-radius: 4px;
    font-family:'Open Sans', sans-serif;
    color: #ff0000;
    background: #ffffff;
    border: dashed #ff0000 2px;
    width: 105px;
    height: 46px;
    line-height:46px;
    font-size: 1.07rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;   
}

.free p {
    vertical-align: middle;
    background-color:#ccc;
    padding:0;
    margin:0;
}