/*
Engelspost Farben
=================================
#003388             Header background-color       sicheres Naviblau   00308f
#FFFFFF             Header Textfarbe color        sicheres Weiß
#99CCFF             Header Textfarbe color hover  sicheres Hellblau   a1caf1

#003388             Button background-color       sicheres Naviblau   00308f 
#0066FF             Border                        sicheres Dunkelblau 0052F5
#FF0080             Border                  hover sicheres Dunkelrosa FF0080
#FF6699             Button background-color hover sicheres Rosa       F7789C
rgb(255, 105, 153)	Button background-color hover sicheres Rosa
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* Header and Navigation bar */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10%;
    background-color: #003388;
    width: 100%;
    z-index: 1;
    -webkit-box-shadow: 0px 6px 25px 2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 6px 25px 2px rgba(0,0,0,0.75);
    box-shadow: 0px 6px 25px 2px rgba(0,0,0,0.75);
    margin-bottom: 100px;
}


.nav_links {
    list-style: none;
}
.nav_links li {
    display: inline-block;
    padding: 0px 20px;
}

.nav_links li a {
    font: bold 14px/1.4 'Open Sans', arial, sans-serif;
    font-weight: 500;
    font-size: 34pt;
    color: #FFFFFF;
    text-decoration: none;
    letter-spacing: 0.10em;
	transition: all 0,3s ease 0s;
    position: relative;
    text-decoration: none;
}

.nav_links li a:hover {
    color: #FF6699;
}
.nav_links li a:hover:before {
    visibility: visible;
    transform: scaleX(1);
}

.nav_links li a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 6px;
    bottom: 0;
    left: 0;
	background-color: rgb(255, 105, 153);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}



/* TEXT */
.Überschrift {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.Überschrift span {
    font-family: "Montserrat", sans-serif;
    font-size: 18pt;
}

/* Buttons starten hier */
/* Buttons 01 Reihe mit Animation*/
.feld0001 {
    display: flex;
    justify-content: center;
  }

.feld0001 button {
    margin-right: 30px;
    margin-left: 30px;
    box-shadow: 0px 0px 25px -6px #0041C2;
	background-color:#003388;
	border-radius:17px;
	border:6px solid #0066FF;
	display:inline-block;
	font-family: "Montserrat", sans-serif;
	font-size:13px;
    text-decoration:none;
    height: 150px;
    width: 350px;
    cursor: pointer;
}

.feld0001 button span {
    font-family: "Montserrat", sans-serif;
    font-size: 14pt;
    margin-top: -120px;
    color: #FFFFFF;
}

.feld0001 button span:hover {
	background: #FF6699;
	color: #FFFFFF;
}
.feld0001 button p {
    font-family: "Montserrat", sans-serif;
    font-size: 11pt;
    text-align: center;
    margin: 10px;
}

.feld0001 button:hover {
	background: #FF6699;
	color: #FFFFFF;
	box-shadow: 0px 0px 25px -6px #FF6699;
	border:6px solid #FF0080;
    -webkit-border-radius: 050px;
    -moz-border-radius: 050px;
    border-radius: 050px;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}



/* Buttons 2 Reihe ohne Animation*/
.feld0002 {
    display: flex;
    justify-content: center;
  }

.feld0002 button {
    margin-right: 30px;
    margin-left: 30px;
    box-shadow: 0px 0px 25px -6px #0041C2;
	background-color:#003388;
	border-radius:17px;
	border:6px solid #0066FF;
	display:inline-block;
	font-family:Arial;
	font-size:13px;
    text-decoration:none;
    height: 150px;
    width: 350px;
    cursor: pointer;
}
.feld0002 button:hover {
	background: #FF6699;
	box-shadow: 0px 0px 25px -6px #FF6699;
	border:6px solid #FF0080;
}


.feld0002 button span {
    font-family: "Montserrat", sans-serif;
    font-size: 14pt;
    margin-top: -120px;
    color: #FFFFFF;
}
.feld0002 button span:hover {
	/*color: #FFFFFF;*/
}
.feld0002 button p {
    font-family: "Montserrat", sans-serif;
    font-size: 11pt;
    text-align: center;
    margin: 10px;
}
