@charset "UTF-8";
/* CSS Document */
/* -webkit- >> Safari, Chrome, Opera */
/* -moz-    >> Firefox */
/* -ms-     >> IE */

body {
	background: #070D2A;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100vw;
	height: 100vh;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-animation-name: changeBg;
	-webkit-animation-delay: 2s;
	-webkit-animation-duration: 0s;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-name: changeBg;
	-moz-animation-delay: 2s;
	-moz-animation-duration: 0s;
	-moz-animation-fill-mode: forwards;
	/*background-image: url(img/background_blue_2550_1080.png);*/
	overflow: hidden;
}
@-moz-keyframes changeBg
{
   from {background-image: url();}
   to   {background-image: url(img/background_blue_2550_1080.png);}
}
@-webkit-keyframes changeBg
{
   from {background-image: url();}
   to   {background-image: url(img/background_blue_2550_1080.png);}
}

img.zoom {
	transition: transform 0.8s;
	-moz-transition: transform 0.8s;
	-webkit-transition: transform 0.8s;
	-o-transition: transform 0.8s;
	-ms-transition: transform 0.8s;
	position: relative;
	top: -50px;
	opacity: 0;
	-moz-animation-name: fadein;
	-moz-animation-delay: 2s;
	-moz-animation-duration: 1s;
	-moz-animation-fill-mode: forwards;
	-webkit-animation-name: fadein;
	-webkit-animation-delay: 2s;
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
}
img.zoom:hover {
	cursor: zoom-in;
	cursor: -moz-zoom-in;
	cursor: -webkit-zoom-in;
	transform: scale(4.0, 4.0);
	-moz-transform: scale(4.0, 4.0);
	-webkit-transform: scale(4.0, 4.0);
	-o-transform: scale(4.0, 4.0);
	-ms-transform: scale(4.0, 4.0);
}
.impressum {
	position: absolute;
	width: auto;
	height: 10px;
	border: 1px solid #F39200;
	padding: 10px;
	margin: 5px;
	bottom: 20px;
	right: 20px;
/*	display: flex;
	align-items: center;
	justify-content: center; */
	font-family: Gotham, "Arial", sans-serif;
	color: #F39200;
	font-size: 12pt;
}
.impressum:hover {
	background-color: #F39200;
	color: #070D2A;
}
.ball {
    background-color: rgba(0,0,0,0);
    border: 5px solid rgba(0,183,229,0.9);
    border-top: 5px solid rgba(0,0,0,0);
    border-left: 5px solid rgba(0,0,0,0);
    border-radius: 50px;
    box-shadow: 0 0 35px #2187e7;
    width: 50px;
    height: 50px;
    margin: 0 auto;
	position: relative;
	top: 105px;
    -moz-animation: spin .5s infinite linear;
    -webkit-animation: spin .5s infinite linear;
}

.ball1 {
    background-color: rgba(0,0,0,0);
    border: 5px solid rgba(0,183,229,0.9);
    border-top: 5px solid rgba(0,0,0,0);
    border-left: 5px solid rgba(0,0,0,0);
    border-radius: 50px;
    box-shadow: 0 0 15px #2187e7;
    width: 30px;
    height: 30px;
    margin: 0 auto;
    position: relative;
    top: 55px;
    -moz-animation: spinoff .5s infinite linear;
    -webkit-animation: spinoff .5s infinite linear;
}

.load {
	-moz-animation-name: fadeout;
	-moz-animation-delay: 2s;
	-moz-animation-duration: 0s;
	-moz-animation-fill-mode: forwards;
	-webkit-animation-name: fadeout;
	-webkit-animation-delay: 2s;
	-webkit-animation-duration: 0s;
	-webkit-animation-fill-mode: forwards;
}

@-moz-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; };
}

@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; };
}

@-moz-keyframes spin {
    0%   { -moz-transform: rotate(0deg); }
    100% { -moz-transform: rotate(360deg); };
}

@-moz-keyframes spinoff {
    0%   { -moz-transform: rotate(0deg); }
    100% { -moz-transform: rotate(-360deg); };
}

@-webkit-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; };
}

@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; };
}

@-webkit-keyframes spin {
    0%   { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); };
}

@-webkit-keyframes spinoff {
    0%   { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(-360deg); };
}