@charset "UTF-8";
/* CSS Document */

body {
color: #002b3e;
font-family: Abel, sans-serif;
margin: 0;
overflow-x:hidden;
}

h1 {
	margin: 0;
}

a {
	text-decoration: none;
	color: #B62020;;
}

a:hover {
	text-decoration: none;
	color: #555;
}

.content {
margin: 0 auto;
text-align: center;
padding-top: 2em;
line-height: 1.5;
font-size: 1.5em;
letter-spacing: 1.2em;
letter-spacing: 0.05em;
background: #fff;

}

.logo{
	background-color: #006796;
	margin: 0 auto;
	text-align: center;
	overflow: hidden;
}

.logo img{
	position: relative;
	top: 130px;
}

#impressum{
	display: none;
	width: 360px;
	font-size: 0.8em;
	margin: 1.2em auto 1.5em auto;
	top: -1.6em;
	position: relative;
}

.content a{
	display: block;
	cursor: pointer;
}

.content p{
	margin-bottom: 20px;
}

#click_mich{
	font-size: 0.7em;
	margin: 3.5em auto 2.5em auto;
	width: 119px;
	border-top: 1px solid #ddd;
	padding-top: 1.1em;
}


/*Lets start with the cloud formation rather*/

/*The container will also serve as the SKY*/

*{ margin: 0; padding: 0;}




/*Time to finalise the cloud shape*/
.cloud {
	width: 200px; height: 60px;
	background: #fff;
	
	border-radius: 200px;
	-moz-border-radius: 200px;
	-webkit-border-radius: 200px;
	
	position: relative; 
}

.cloud:before, .cloud:after {
	content: '';
	position: absolute; 
	background: #fff;
	width: 100px; height: 80px;
	position: absolute; top: -15px; left: 10px;
	
	border-radius: 100px;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
	-moz-transform: rotate(30deg);
}

.cloud:after {
	width: 120px; height: 120px;
	top: -55px; left: auto; right: 15px;
}

/*Time to animate*/
.x1 {
	-webkit-animation: moveclouds 80s linear infinite;
	-moz-animation: moveclouds 80s linear infinite;
	-o-animation: moveclouds 80s linear infinite;

	-webkit-transform: scale(1.6);
	-moz-transform: scale(1.6);
	transform: scale(1.6);
	opacity: 0.4; /*opacity proportional to the size*/

}

/*variable speed, opacity, and position of clouds for realistic effect*/
.x2 {
	left: 800px;
	
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	transform: scale(1.2);
	opacity: 0.23; /*opacity proportional to the size*/
	
	/*Speed will also be proportional to the size and opacity*/
	/*More the speed. Less the time in 's' = seconds*/
	-webkit-animation: moveclouds 124s linear infinite;
	-moz-animation: moveclouds 124s linear infinite;
	-o-animation: moveclouds 124s linear infinite;
}

.x3 {
	left: 1050px; top: -200px;
	
	-webkit-transform: scale(1.9);
	-moz-transform: scale(1.9);
	transform: scale(1.9);
	opacity: 0.2; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 150s linear infinite;
	-moz-animation: moveclouds 150s linear infinite;
	-o-animation: moveclouds 150s linear infinite;
}

.x4 {
	left: 770px; top: -250px;
	
	-webkit-transform: scale(0.75);
	-moz-transform: scale(0.75);
	transform: scale(0.75);
	opacity: 0.1; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 100s linear infinite;
	-moz-animation: moveclouds 100s linear infinite;
	-o-animation: moveclouds 100s linear infinite;
}

.x5 {
	left: 1400px; top: -150px;
	
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0.5; /*opacity proportional to the size*/
	
	-webkit-animation: moveclouds 180s linear infinite;
	-moz-animation: moveclouds 180s linear infinite;
	-o-animation: moveclouds 180s linear infinite;
}

@-webkit-keyframes moveclouds {
	0% {margin-left: 1500px;}
	100% {margin-left: -1500px;}
}
@-moz-keyframes moveclouds {
	0% {margin-left: 1500px;}
	100% {margin-left: -1500px;}
}
@-o-keyframes moveclouds {
	0% {margin-left: 1500px;}
	100% {margin-left: -1500px;}
}

