JSFiddle - React, Tailwind, and code Playground

HTML

<div class="center">
<p id="logo"><span>Coming soon!</span></p>
</div>

CSS

span {
    color:#ff0000;
    font-size: 14px;
    font-weight:normal;
    font-family:sans-serif;
    border-bottom-color: currentColor;
    border-bottom-style: dotted;
    border-bottom-width: 1px;
    line-height: 1.1;
}
.center {
    width:150px;
    height:100px;
    position:absolute;
    left:50%;
    top:50%;
    margin-left:-100px;
    margin-top:-50px;
    border: 1px solid #000;
    text-align:center;
    line-height: 100px;
}