@charset "UTF-8";
/*Seitenübergreifendes Zeug*/
html {
	background: rgb(90,150,202);
	background: linear-gradient(0deg, rgba(90,150,202,0.31836484593837533) 0%, rgba(255,255,255,1) 28%);
	min-height: 100%;
}

a {
	color: #213668;
	text-decoration: none;
	transition: all .2s ease-in-out;
}

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


/*Startseite*/
.logodiv {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 4%;
}

.logo {
	max-width: 90%;
	height: auto;
	transition: all .3s ease-in-out;
	animation: logoanimation 5s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	
}

@keyframes logoanimation {
  0% {
    transform: scale(1);
  }  
  50% {
    transform: scale(1.008);
  }
  100% {
    transform: scale(1);
  }
}


/*.logo:hover {transform: scale(1.005);}*/


.text {
	text-align: center;
	color: #213668;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	padding-top: 2%;
	padding-bottom: 2%;
}

.menu {
	position: absolute;
	bottom: 2%;
	left: 2%;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height:125%
}



/*Impressum und Datenschutz*/
.menuimpressum{
	position: absolute;
	bottom: 2%;
	left: 2%;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	;
	position: sticky;
}

.text_impressum {
	text-align: left;
	color: #213668;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	padding-top: 3%;
	max-width: 700px;
	padding-bottom: 10%;
	margin: auto;
	padding: 10px;
}

.menutextimpressum {
	border: 5px solid #FFFFFF;
	border-radius: 4px;
	background-color: #FFFFFF;
}