JSFiddle - React, Tailwind, and code Playground

HTML

<div class="grid">
  Code with Palash
</div>

CSS

.grid {
  /* display grid */
  display: grid;
  place-content: center;

  /* Spacing */
  height: 200px;
  width: 300px;
  margin: 40px;
  border: solid #794cc3;
}