/* Animation by - Chris Smith */
html {
	height: 100%;
	font-family: 'Roboto', sans-serif;
	color: #434343;
}

body {
	margin: 0;
}

.bg {
	animation: slide 10s ease-in-out infinite alternate;
	background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%);
	bottom: 0;
	left: -50%;
	opacity: .5;
	position: fixed;
	right: -50%;
	top: 0;
	z-index: -1;
}

.bg2 {
	animation-direction: alternate-reverse;
	animation-duration: 60s;
}

.content {
	background-color: rgba(255,255,255,.8);
	border-radius: .25em;
	box-shadow: 0 0 .25em rgba(0,0,0,.25);
	box-sizing: border-box;
	left: 50%;
	padding: 10vmin;
	position: fixed;
	top: 50%;
	transform: translate(-50%, -50%);
}

@keyframes slide {
	0% {
		transform: translateX(-25%);
	}

	100% {
		transform: translateX(25%);
	}
}

h1 {
	font-size: 36px;
	margin-bottom: 0;
}

h2 {
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	margin-top: 0;
}

a .fa {
	color: #434343;
	float: left;
	margin-right: 12px;
	font-size: 32px;
}

ul {
	padding-left: 0;
	margin-top: 40px;
	list-style: none;
}

.clear {
	clear: both;
}

.link-container {
	margin-top: 50px;
	left: 50%;
}

img.me {
	border-radius: 50%;
	border: 3px solid rgba(255,255,255,.50);
	position: absolute;
	top: -90px;
}
