body {
	margin: 0;
	background: white;
	font-family: "Roboto", Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-weight: 300;
	font-size: 16px;
	border-top: 3px solid #ffcc01;
	color: #454545;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%) -50px 0,
	linear-gradient(225deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%) -50px 0,
	linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
	linear-gradient(315deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%);
	background-size: 100px 100px;
	background-color: #b1b1b1;
}

a {
	color: #454545;
	text-decoration: none;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.content {
	width: 94%;
	max-width: 600px;
	padding: 30px 0 0 0;
	margin: 0 auto;
}

.logo {
	width: 225px;
	height: 150px;
	background-image: url('../img/paperplane.png');
	background-repeat: no-repeat;
	background-size: cover;
	margin: 0 auto;
	margin-top: 60px;
	position: relative;
	top: -1px;
	z-index: 10;
}

.name {
	text-align: center;
	padding-top: 35px;
}

.name h1 {
	font-size: 32px;
	border-bottom: 2px solid #3498db;
	font-weight: 500;
	letter-spacing: 2px;
	line-height: 120%;
	margin: 0 0 10px 0;
	padding: 0 30px 5px 30px;
	display: inline-block;
	white-space: nowrap;
}

.name h2 {
	font-size: 22px;
	font-weight: 300;
	letter-spacing: 15px;
	line-height: 120%;
	margin: 0;
	padding: 0 10px 5px 25px;
	display: inline-block;
	text-transform: uppercase;
	text-align: center;
	white-space: nowrap;
}

.name img {
	width: 300px;
	height: 300px;
}

.info {
	width: 100%;
	margin: 80px auto 0 auto;
	max-width: 360px;
}

.info > div {
	margin-bottom: 30px;
}

.info span {
	text-align: center;
	white-space: nowrap;
	display: block;
	font-weight: 700;
	padding-bottom: 5px;
}

.info em {
	display: block;
	text-align: center;
	font-style: normal;
	white-space: nowrap;
}

.info em a:hover,
.info span a:hover {
	text-decoration: underline;
}

.footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60px;
	line-height: 60px;
	color: white;
	background: #727271;
	text-align: center;
}

.footer p {
	padding: 0;
	margin: 0;
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 3px;
	position: relative;
}

/*.footer p:after {*/
/*	height: 44px;*/
/*	content: '';*/
/*	background-image: url('../img/footer.png');*/
/*	background-repeat: no-repeat;*/
/*	background-position: center center;*/
/*	background-size: 20px 44px;*/
/*	position: absolute;*/
/*	top: -60px;*/
/*	left: 0;*/
/*	right: 0;*/
/*}*/

@media screen and (max-width: 767px) {
	body {
		font-size: 14px;
	}

	.name {
		padding-top: 20px;
	}

	.name h1 {
		font-size: 28px;
	}

	.name h2 {
		font-size: 17px;
	}

	.info {
		margin-top: 50px;
	}

	.info > div {
		margin-bottom: 25px;
	}

	.info span {
		padding-bottom: 3px;
	}

	.footer {
		height: 50px;
		line-height: 50px;
		position: relative;
		margin-top: 50px;
	}

	.footer p {
		font-size: 16px;
		letter-spacing: 2px;
	}

	.footer p:after {
		height: 33px;
		background-size: 15px 33px;
		position: absolute;
		top: -45px;
	}
}

