/* 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;
}

/*
blue  #1C9EF0
green #28E365
pink  #E3278C
*/

/* Style */

* {
	font-family: 'Roboto', sans-serif;
}

html {
	background-color: #000;
	height: 100vh;
	color: white;
	font-weight: 300;
}

.background {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: 100vw;	
	z-index: 0;
	background-color: #061D2C;
	background-image: url("../bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
	background-size: cover;	
	animation: kenburns 180s ease 0s infinite;
}

@keyframes kenburns {
	0% { transform: scale(1.5) translate3d(2vw, 2vw, 0) }

	30% { transform: scale(1) translate3d(0, 0, 0) }
	
	60% { transform: scale(1.3) translate3d(5vw, 1vh, 0) }

	90% { transform: scale(1.3) translate3d(-10vw, -10vh, 0) }

	100% { transform: scale(1.5) translate3d(2vw, 2vw, 0) }
}

section.profile {
	position: fixed;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	z-index: 200;
}

.image {
	margin: 0 auto 1rem;
	overflow: hidden;
	border-radius: 50%;
	border: solid 4px #1C9EF0;
	width: 180px;
	height: 180px;
}

.image img {
	width: 100%;
	height: auto;
}

.info {
	position: relative;
	width: 100%;	
	padding: 2rem;
	background-color: #00000080;
	text-align: center;
}

h1 {
	color: #1C9EF0;
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.occupation {
	font-size: 1.25rem;
	font-weight: 300;
	margin-bottom: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.occupation .icon {
	margin: 0 1rem;
	color: rgb(206, 206, 206);
}

.social {
	display: flex;
	justify-content: center;
	align-items: center;
}

a.icon {
	display: block;
	margin: 0 .25rem;
	font-size: 1.5rem;
	color: white;
	transition: 200ms transform, 200ms color;
}

a.icon:hover {
	color: #1C9EF0;
	transform: scale(1.25);
}

.holly {
	display: block;
	position: absolute;
	top: -47px;
	left: 0;
	right: -110px;
	margin: 0 auto;
  animation-duration: 1.4s;
	animation-iteration-count: infinite;
	transform: rotate(3deg);
}

.bounce {
  animation-name: bounce;
	animation-timing-function: cubic-bezier(0.4, 0.8, 0.4, 1);  
}

@keyframes bounce {
  0%   { transform: scale(1,1)    translateY(0); }
  10%  { transform: scale(1.1,.9) translateY(0); }
  30%  { transform: scale(.9,1.1) translateY(-10px); }
	46%  { transform: scale(1,1)    translateY(0); }
	100%  { transform: scale(1,1)    translateY(0); }
}