body,
html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;

	font-size: 1px;
}

canvas {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;

	opacity: 0;
}

h1,
h2 {
	margin: 0;
	padding: 0;
	opacity: 0;
}

h1 { 
	font-size: 50em;
	padding: 15px 0;
	margin: 20px 0;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

h2 { font-size: 30em; }

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

.logo {
	width: 500px;
	height: 650px;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 100;

}

.subline {
	position: absolute;
	bottom: 0;
	text-align: center;
	width: 100%;
	color: #fff;
	line-height: 1.2;
}

.subline div {
	opacity: 0;
	font-size: 30em;
	color: #fff;
}

.logo-color,
.logo-white {
	opacity: 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	width: 300px;
	margin: auto;
}


.footer {
	position: fixed;
	bottom: 20px;
	left: 0;
	width: 100%;

	font-size: 12em;
	text-align: center;
}

.footer a {
	color: rgb(65, 180, 30);
	text-decoration: none;
	font-weight: 400;
}


.logo-color,
.logo-white,
canvas,
.subline div,
h1,
h2 {
	-webkit-animation: fadeIn 1s ease-in;
	-o-animation: fadeIn 1s ease-in;
	animation: fadeIn 1s ease-in;
	animation-fill-mode: forwards;
}

canvas { animation-delay: 2s; }
.logo-white { animation-delay: 4s; }
h1 { animation-delay: 6s; }
.subline div { animation-delay: 6.5s; }
h2 { animation-delay: 7s; }

@keyframes fadeIn {
	100% { opacity: 1; }
}

@keyframes hover {
	0% { padding-top: 0; }
	50% { padding-top: 60px;}
}

@media (max-width: 600px), (max-height: 750px) {
	body { 
		font-size: 0.5px;
	}

	.logo {
		width: 300px;
		height: 400px;
	}

	.logo-white,
	.logo-color {
		width: 200px;
	}
}
