


*{
	margin:			0;
	padding:		0;
	}

body {
	font-family: 'Raleway', sans-serif;
	font-size: 		1.2em;
	color:			#000;
	background: #fff;
	text-align: center;
}

#main {
	position: absolute;
    top: 38%;
	width: 100%;
    text-align: center
}



h1 {
	font-weight: 500;
	letter-spacing: 3px;
	margin-bottom: 50px;
	font-size: 18px;
}

.schuch {
	font-weight: 300;
	letter-spacing: 3px;
	margin-bottom: 30px;
    color: #8e8e8e;
	font-size: 34px;
    display: block
}
a {
	color: black;
	font-weight: normal;
	transition: ease-in-out 0.3s;
	-webkit-transition: ease-in-out 0.3s;
	-moz-transition: ease-in-out 0.3s;
}


.bottom {
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center
}

a, p {
	line-height: 2em;
	letter-spacing: 1px;
	font-size: 14px;
}
a:hover {
	color: #8e8e8e;
}

@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
 
.fade-in {
    opacity:0;  /* make things invisible upon start */
    -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;
 
    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
 
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}

.delay-1 {
	-webkit-animation-delay: 0.3s;
	-moz-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
