html, body {
	background: black;
	color: white;
	width: 100%;
	height: 100%;
	margin: 0;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

body {
	animation: turn-on .8s 1;
}

@keyframes turn-on {
	0% {
		transform: scaleX(.001) scaleY(.8);
	}
	5% {
		transform: scaleX(.02) scaleY(.02);
	}
	15% {
		transform: scaleX(1) scaleY(.001);
	}
	40% {
		transform: scaleX(1) scaleY(1);
	}
	100% {
		transform: scaleX(1) scaleY(1);
	}
}

body > div {
	max-height: 100%;
	overflow: auto;
	width: 100%;
}

#overlay {
	width:100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	animation: flash .8s 1;
	z-index: 10;
	pointer-events: none;
}

@keyframes flash {
	0% {
		background: #333f;
	}
	5% {
		background: #ffff;
	}
	100% {
		background: #fff0;
	}
}

h1 {
	margin: 0;
	text-align: center;
}

#links > div {
	margin: 1em auto;
	width: 460px;
}

#links a {
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: left;
}

.logo {
	display: inline-block;
	position: relative;
	width: 100px;
	height: 100px;
	margin-right: 20px;
	pointer-events: none;
}

.logo > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 100px;
}

path {
	fill: #222;
}

#collab {
	margin: 0 auto;
	width: 460px;
}

#collab a {
	animation: vhs .051s infinite;
	background: #3140a5;
	display: block;
	padding: 1em 0;
	text-align: center;
}

@keyframes vhs {
	0% {
		background: #3140a5;
	}
	100% {
		background: #3744a9;
	}
}

#collab a:hover {
	animation: vhs-hover .051s infinite;
	background: #1e339c;
}

@keyframes vhs-hover {
	0% {
		background: #1e339c;
	}
	100% {
		background: #1f35a6;
	}
}

#collab img {
	background: black;
	color: white;
	padding: 3px 2px;
}

.f1:hover path { animation: f1 1s infinite; }
@keyframes f1 {
	0% { fill: #666; }
	100% { fill: #222; }
}

.f2:hover path { animation: f2 1s infinite; }
@keyframes f2 {
	0% { fill: #aaa; }
	5% { fill: #777; }
	10% { fill: #aaa; }
	100% { fill: #222; }
}

.f3:hover path { animation: f3 3s infinite; }
@keyframes f3 {
	0% { fill: #222; }
	50% { fill: #444; }
	100% { fill: #222; }
}

.f4:hover path { animation: f4 3s infinite; }
@keyframes f4 {
	0% { fill: #222; }
	50% { fill: #444; }
	94% { fill: #222; }
	95% { fill: #bbb; }
	100% { fill: #222; }
}

.f5:hover path { animation: f5 4s infinite; }
@keyframes f5 {
	0% { fill: #222; }
	5% { fill: #ddd; }
	6% { fill: #ccc; }
	7% { fill: #ddd; }
	8% { fill: #ccc; }
	9% { fill: #ddd; }
	10% { fill: #ccc; }
	11% { fill: #ddd; }
	12% { fill: #ccc; }
	13% { fill: #ddd; }
	14% { fill: #ccc; }
	15% { fill: #ddd; }
	16% { fill: #ccc; }
	40% { fill: #060606; }
	90% { fill: #0f0f0f; }
	100% { fill: #222; }
}
