@import url('https://fonts.googleapis.com/css?family=Dosis:300,400,500');

html,
body {
	font-family: 'Dosis', sans-serif;
	margin: 0;
	padding: 0;
}

.container {
	position: relative;
	height: 100vh;
	background-color: #121212;
	color: #f5f5f5;

}

.content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
}

.title {
	font-size: 2rem;
	padding-bottom: 16px;
	color: #dc3545;
}

.lead {
	font-size: 1rem;
}

img {
	max-width: 400px;
	height: auto;
	width: auto;
	padding-bottom: 32px;
}