* {
	box-sizing: border-box;
}
html {
	height: 100%;
	min-height: 100%;
}
body {
	background: #e9e9eb;
	color: #231f20;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	padding: 0;
	margin: 0;
	height: 100%;
	min-height: 100%;
	position: relative;
	overflow: hidden;
}
body a {
	color: #231f20;
}
.clouds {
	background: url('../img/clouds.jpg') left top;
	background-repeat: repeat-x;
	background-size: 1200px auto;
	height: 300px;
	width: 100%;
	position: relative;
	top: 35%;
	transform: translateY(-35%);
}
.logo-wrapper {
	max-width: 450px;
	margin: 0 auto;
	transform: translateY(35%);
	padding: 0px 20px;
	z-index: 1;
	position: relative;
}
.logo-wrapper img{
	width: 100%;
}
.domain-info {
	display: block;
	margin: 50px auto 0px auto;
	width: auto;
	padding: 0px 20px;
	text-align: center;
}
.domain-info p {
	background: #fff;
	border: 1px solid #e2e4e9;
	display: inline-block;
	padding: 10px 60px;
	font-size: 24px;
	border-radius: 30px;
	font-weight: 400;
	box-shadow: 15px 15px 20px #e0e1e4;
	position: relative;
	z-index: 10;
}
.domain-info p span,
.domain-info p a {
	font-weight: 600;
}
.domain-info  a {
	text-decoration: none;
}
.domain-info p a:hover {
	text-decoration: underline;
}
.info-wrapper {
	border-top: 1px solid #d5d4d6;
	padding: 40px 20px;
	position: absolute;
	right: 0px;
	left: 0px;
	bottom: 50px;
	text-align: center;
}
.info-wrapper h1 {
	font-size: 1.2em;
	margin-top: 0px;
	margin-bottom: 5px;
}
.info-wrapper p {
	margin: 0 auto;
	display: inline-block;
	max-width: 800px;
}
.footer {
	border-top: 1px solid #d5d4d6;
	box-shadow: inset 0px 1px 0px #f4f4f5;
	text-align: center;
	font-size: 11px;
	padding: 10px 20px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;
	width: 100%;
}
.delay-one {
	animation-delay: .4s !important;
}
.delay-two {
	animation-delay: .6s !important;
}
.delay-three {
	animation-delay: .8s !important;
}

/* Animationen */

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}


@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 35%, 0);
    transform: translate3d(0, 35%, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 35%, 0);
    transform: translate3d(0, 35%, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}


@media screen and (max-width:460px) {
.domain-info p {
 	display: block;
}
.info-wrapper {
	margin: 50px 0 0px 0px;
}
.clouds,
.info-wrapper,
.footer {
	position: relative;
	transform: none;
	top: inherit;
	bottom: inherit;
}
.domain-info p {
	font-size: 20px;
}
}

@media screen and (max-height:800px) and (max-width:460px) {
	.domain-info p {
	 	display: block !important;
	}
}
@media screen and (max-height:700px) {
.domain-info p {
 	display: inline-block;
}
.info-wrapper {
	margin: 50px 0 0px 0px;
}
.clouds,
.info-wrapper,
.footer {
	position: relative;
	transform: none;
	top: inherit;
	bottom: inherit;
}
}