JSFiddle - React, Tailwind, and code Playground

HTML

<body>
		<div id="header">
			<div class="text">
				<h1>Aangenaam Klassiek</h1>
				<h2>Vormgeving & Frontend</h2>
			</div>
		</div>
</body

CSS

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

html, body {
	width: 100%;
	height: 540px;
	background: #efede7;
}

body {
	background: #384452;
	font-family: 'Montserrat', sans-serif;
	color: #fff;
	line-height: 1.3;
}

#header {
	background-image: url(http://www.larsdejonge.nl/werk/img/background.jpg);
    background-repeat: no-repeat;
    width: 100%;
    height: 540px;
}
.text {
	padding-top: 150px;
}

h1 {
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	font-size: 3em;
	font-weight: 700;
	color: #fff;
	text-align: center;
}

h2 {
	font-family: 'ProximaNova', sans-serif;
	color: #545454;
	font-size: 1.25em;
	letter-spacing: .06em;
	margin: 0;
	padding: 0 0 2.5em;
	text-align: center;
	text-transform: uppercase;
}

h2::after {
	content: '';
	width: 80px;
	display: block;
	background: #272f38;
	height: 10px;
	margin: 30px auto;
	text-align: center;
}