@charset "UTF-8";


/* 
	http://meyerweb.com/eric/tools/css/reset/ 
	v2.0 | 20110126
	License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*
|-------------------------
|	Cedric Chouvenc
|	Last update : 07/2016
|-------------------------
*/

html {
	height: 100%;
	font-family: 'Lato', sans-serif;
}

header {
	font-size : 15px;
} 

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	
	height: 100%;
	padding: 0;
	margin: 0;

	color: #617078;
	background-color: #ffffff;
	background-image: url("images/overlay.png"),
		-moz-linear-gradient(60deg, rgba(255, 177, 75, 0.5) 5%, rgba(0, 228, 255, 0.35)),
		url("../images/bg.jpg");
	background-image: url("images/overlay.png"),
		linear-gradient(60deg, rgba(255, 177, 75, 0.5) 5%, rgba(0, 228, 255, 0.35)),
		url("../images/bg.jpg");
	background-repeat: repeat, no-repeat, no-repeat;
	background-size: 100px 100px, cover, cover;
	background-position: top left, top center, top center;
	background-attachment: fixed, fixed, fixed;

	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 1em;

	-moz-perspective: 1000px;
	-webkit-perspective: 1000px;
	-ms-perspective: 1000px;
	perspective: 1000px;
	
	animation-name: fadein;
	animation-duration: 5s;
}

@keyframes fadein {
	from {
		background-position: 0% 15%;
	}
	to {
		background-position: 0% 0%;
	}
}

article {
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0px 0px 2px #69A1AC;
	opacity: 0.95;

	padding: 3em;
	margin: 3em;
	
	animation-name: rotate;
	animation-duration: 2s;
}

@keyframes rotate {
	from {
		-moz-transform: rotateX(12deg);
		-webkit-transform: rotateX(12deg);
		-ms-transform: rotateX(12deg);
		transform: rotateX(12deg);
	}
	to {
		-moz-transform: rotateX(0deg);
		-webkit-transform: rotateX(0deg);
		-ms-transform: rotateX(0deg);
		transform: rotateX(0deg);
	}
}

article header {
	text-align: center;
}

.avatar {
	display: block;
	position: relative;
	margin-bottom: 1em;
}

.avatar::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	width: calc(100% + 6em);
	height: 1px;
	left: -3em;
	background: #BDCBC8;
	z-index: -1;
	box-sizing: border-box;
}

header img {
	width: 8em;
	height: 8em;

	display: block;
	position: relative;
	margin: 0 auto;
	border-radius: 100%;
	box-shadow: 0 0 0 1.5em #ffffff;
}

article > p {
	font-size: 18px;
	margin: 1em 0;
	letter-spacing: 0em;
	text-transform: none;
	max-width: 30em;
}

#icons {
	font-size: 2em;
	letter-spacing: 0.5em;
	padding-top: 0.5em;
}

#icons > a {
	text-decoration: none;
	color: #617078;

	display: inline-block;
	position: relative;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.5em;
	border-radius: 100%;
	border: solid 1px #c8cccf;
	text-indent: 0.35em;
	white-space: nowrap;
	overflow: hidden;

	transition: color 0.5s, border 0.5s;
}

#icons > a:hover {
	color: #77ACB2;
	border: solid 1px #77ACB2;

	transition: color 0.5s, border 0.5s;
}

h1 {
	font-size: 30px;
}



#copy {
	color: rgba(255, 255, 255, 0.75);
	padding: 2em;

	font-size: 0.8em;
}

article, header, p, h1, footer, a {
	text-align: center;
	line-height: 2em;
}