/** 
 * HOMEPAGE
 * We're eventually going to put this into SASS.
 */

html { background: radial-gradient(ellipse at center, #fff 0%, #ccc 100%); }

body { 
	font-family: 'Saira Extra Condensed', sans-serif; 
	font-weight: 700;
	line-height: 1;
}

.hp__content-container { 
	position: relative; 
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	animation: fadeInContent 1s;
	animation-delay: .5s;
	animation-fill-mode: forwards;
}

.hp__img-container {
	width: 175px;
	height: 175px;
	margin: 0 0 15px auto;
	border-radius: 50%;
	overflow: 	hidden;
}

.hp__img {
	width: 100%;
	height: auto;
}

.hp__bio { 
	text-transform: uppercase;
}

.hp__bio--name {
	margin: 0;
	font-weight: 900;
	font-size: 86px;
	color: #404040;
}

.hp__bio--job {
	margin: 0;
	font-size: 32px;
	color: #808080;
}

.hp__bio--break {
	margin-bottom: 14px;
	font-size: 24px;
	color: #ccc;
}

.hp__bio--email,
.hp__bio--phone {
	color: #900;
	font-size: 18px;
	text-decoration: none;
}

.hp__bio--email { margin-right: 20px; }

.hp__bio--disclaimer {
	margin-top: 10px;
	font-size: 12px;
	text-transform: uppercase;
	color: #808080;
}


@keyframes fadeInContent {
	from { 
		opacity: 0; 
		transform: translateY(-60%);
	}
	to   { 
		opacity: 1; 
		transform: translateY(-50%);    	
	}
}

@media (max-width: 600px) {
	.hp__content { text-align: center; }
	.hp__img-container { margin-right: auto; }
}