JSFiddle - React, Tailwind, and code Playground

HTML

<div id="root">
  <div>
    <h1>Hello React!</h1>
    <p>Start editing to see some magic happen :)</p>
  </div>
</div>

CSS

html,
body {
  margin: 0;
  height: 100%;
}

h1,
p {
  font-family: Lato;
  margin: 0;
  margin-top: 100px;
}

h1:first-child {
  margin-top: 0;
}

#root {
  background: blue;
  height: 100vh;
}