JSFiddle - React, Tailwind, and code Playground

by Ivin Raj S

HTML

<div class="textBlock">
  <p>text text text</p>
</div>

CSS

.textBlock {
 text-align: center;
 
    background-color:gray;
}

.textBlock p {
 font-size: 28px;
 font-family: Helvetica, Arial;
 line-height: 34px;
 letter-spacing: 0.1em; 
    color:white;
}