
html {
	margin: 0;
	height: 100%;
}

body {
	background-color: #01072c;
	background-image: url("../img/bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
	background-attachment: fixed;
	margin: auto;
	padding: 0 8px;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#content {
	background-color: rgba(255, 255, 255, 0.96);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
	-moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
	margin: 102px auto 22px;
	border-radius: 4px;
	display: block;
	min-height: 100%;
	max-width: 100%;
	width: 28em;
	color: #333;
	text-align: center;
	cursor: default;
}

#content > h1 {
	color: #0e3772;
	font-weight: 700;
	font-size: 2.3em;
	margin: 0.3em 1em;
}

#content > h4 {
	margin: 0 0.3em 1em;
	font-weight: 400;
	font-size: 1.3em;
}

#avatar {
	display: block;
	position: relative;
	top: -100px;
	width: 220px;
	height: 220px;
	background: white;
	margin: 0 auto -90px;
	border: 14px solid white;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}

.separator {
	display: block;
	height: 0.5em;
	border: 0;
	border-bottom: 1px solid #ccc;
	margin: 1em 2.4em;
	padding: 0;
}

#icons {
	display: flex;
	justify-content: space-around;
	list-style-type: none;
	font-size: 40px;
	width: 60%;
	margin: 0 auto;
	padding: 0 0 0.4em 0;
}

#icons > li {
	display: inline;
	padding: 0;
}

#icons > li > a {
	color: #333;
	text-decoration: none;
	border-bottom-style: none;
}

#icons > li > a:hover {
	transform: scale(1.1);
}

#icons a.fa-facebook:hover {
	color: #3b5998;
}

#icons a.fa-linkedin:hover {
	color: #0077b5;
}

#icons a.fa-github:hover {
	color: #6e5494;
}

