JSFiddle - React, Tailwind, and code Playground

by fido3993

HTML

<div class="main">
        <div class="gunbg">
          <h1>
          Hello World
          </h1>
        </div>
</div>

CSS

.main {
  background: url('http://www.gettyimages.ca/gi-resources/images/Homepage/Hero/UK/CMS_Creative_559332799_Tree_Rings.jpg');
  background-attachment: fixed;
  background-size: cover;
  height: 130vh;
}


.gunbg{
  text-align:center;
  color:#fff;
  padding-top:200px;
}