JSFiddle - React, Tailwind, and code Playground

HTML

<div id="headerwrap">
					<h1>Make your landing page<br/>
					look really good.</h1>
	</div><!-- /headerwrap -->

CSS

#headerwrap {
	background: url(http://bintangguide.com/assets/images/pi1.jpg)
	margin-top: -20px;
	padding-top:200px;
	background-attachment: relative;
	background-position: center center;
	min-height: 650px;
	width: 100%;
	
    -webkit-background-size: 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;

    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#headerwrap h1 {
	margin-top: 60px;
	margin-bottom: 15px;
	color: white;
	font-size: 45px;
	font-weight: 300;
	letter-spacing: 1px;
}