* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html, body {
	height: 100%;
	width: 100%;
}

html {
	background: #d9d9db url('background.jpg') no-repeat center bottom;
	font-family: 'Lato', 'Helvetica Neue', sans-serif;
	background-size: cover;
}

body {
	position: relative;
}

.business-card {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	padding: 10%;
}

.business-card h1 {
	font-size: 26px;
	color: #454931;
	font-weight: 700;
	margin: 0 0 6px 0;
}

.business-card h2 {
	font-weight: 300;
	font-size: 16px;
	font-style: italic;
	margin: 0 0 25px 0;
	color: #70735b;
}

.business-card article {
	color: #70735b;
	padding: 25px 0;
	position: relative;
}

.business-card .status {
	color: #5c564a;
	padding: 0 0 45px 0;
}

.business-card .status .get-in-touch {
	display: inline-block;
	height: 42px;
	line-height: 38px;
	padding: 0 30px;
	color: #5c564a;
	border: 2px solid rgba(92, 86, 74, 0.2);
	font-size: 16px;
	text-decoration: none;
	text-align: center;
	position: relative;
	overflow: hidden;
	margin: 20px 0 0 0;
	cursor: pointer;

	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	    -ms-transition: all 0.3s ease;
	     -o-transition: all 0.3s ease;
	        transition: all 0.3s ease;
}
.business-card .status .get-in-touch:hover {
	border-color: rgba(92, 86, 74, 0.75);
}

.business-card .about {
	font-size: 14px;
	line-height: 22px;
}

.business-card .about p + p {
	margin-top: 6px;
}

.business-card .about:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 170px;
	height: 1px;
	background-color: rgba(92, 86, 74, 0.2);
}

@media (min-width: 580px) {
	.business-card {
		max-width: 500px;
		padding: 100px 40px 40px 100px;
	}
}

@media (min-width: 880px) {
	html {
		background-position: right bottom;
	}
}