
html {
	height: 100%;
}

body {
	height: 100%;
	margin: 0;
	background-color: #fff;
	font-family: 'Nunito Sans', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	color: #333;
	display: flex;
	justify-content: center;
	align-items: center;
}

h1 {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 3.5rem;
	font-weight: 600;
	color: #333;
	text-transform: uppercase;
}

h1::after {
	display: block;
	margin: .5rem auto;
	content: '';
	height: 2px;
	width: 30%;
	background-color: #ccc;
}

.container {
	max-width: 600px;
	margin: auto;
	text-align: center;
	padding: 1rem;
}

img {
	width: 70%;
	height: auto;
	margin-top: 1rem;
}

.bigFont {
	font-size: 1.5rem;
}

.lightFont {
	color: #afafaf;
}

hr {
	border: none;
	border-top: 2px solid #ccc;
	margin: 2rem 0;
}