html {
	margin: 0;
	padding: 0;
	height: 100%;
}
body {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 18px;
	line-height: 1.5;
	background-color: #1D1D1B;
	color: #fff;
	font-family: Arial, sans-serif;
}
a, 
a:visited {
	color: #fff;
	text-decoration: none;
}
.contact {
	position: relative;
	background: url(img/logo.png) center top no-repeat;
	background-size: contain;
	width: 90%;
	height: 350px;
	max-width: 500px;
	margin: 0 auto;
}
.contact p {
	position: absolute;
	bottom: 0;
	left: 9%;
}
.contact p:last-child {
	left: 68%;
}

@media (max-width:600px) {
	body {
		font-size: 15px;
	}
	.contact p:last-child {
		left: 62%;
	}
}