:root {
  --border-radius: 10px;
  --second-border-radius: 15px;
  --third-border-radius: 20px;

  --primary-color: lightblue;

  --gray-color: #EFF4FF;
  --blue-color: #F8FAFC;
}

header {
  position: sticky;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px;
  top: 0;
  z-index: 1;
  bottom: 0;
  border-bottom: 3px solid black;
}

body {
  margin: 0;
  font-family: Arial;
}

.topnav {
  overflow: hidden;
  background-color: transparent;
  margin: 10px;
  text-align: right; /* Hier wird die Textausrichtung auf rechts festgelegt */
}

.topnav a {
  display: inline-block; /* Damit die Anker als Inline-Blöcke behandelt werden können */
  color: black;
  text-align: center;
  padding: 10px 18px;
  text-decoration: none;
  font-size: 17px;
  margin-left: 12px;
  
}

.logo {
  float: left; /* Bild auf der linken Seite platzieren */
  margin: 0px; /* Margin für Abstand zur Navigationsleiste festlegen */
  margin-left: 10px;
  height: 30px;
  display: flex; /* Flexbox verwenden */
  flex-direction: column; /* Anordnung der Elemente in einer Spalte */
  justify-content: center; /* Zentriert den Inhalt vertikal */
  align-items: center; /* Zentriert den Inhalt horizontal */
  text-align: center; /* Falls der Text innerhalb des Logos nicht zentriert ist */
}

.icon_text {
  display: flex;
  align-items: center;
}

.icon {
  border-radius: 0px;
  height: 30px;
  margin: 2px;
  margin-right: 5px;
}

.active {
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--border-radius);
}

.topnav .icon {
  display: none;
}

.dropdown {
  display: inline-block; /* Damit Dropdowns ebenfalls als Inline-Blöcke behandelt werden */
  margin-left: 12px;
}

.dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: black;
  padding: 10px 18px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: var(--third-border-radius);

  border: 2px solid black;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  margin: 5px;
}

.topnav a:hover,
.dropdown:hover .dropbtn {
  background-color: #ddd;
  border-radius: var(--border-radius);
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
  border-radius: var(--second-border-radius);
  margin: 5px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.button-sep-right {
  margin-left: 250px;
  margin-right: 12px; /* Abstand zum letzten Element in der Navigationsleiste */
  display: inline-block;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  background-color: #333;
  border: 2px solid #333;
  border-radius: var(--border-radius);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  margin: 5px;
  height: 40px;
}



.button-sep-right:hover {
  background-color: white;
  border-color: black;
  color: black;
  cursor: pointer;
}


.banner-start {
  background-color: var(--blue-color);
  min-height: 100vh;
  padding: 50px;
  text-align: center;
  justify-content: center;
}

.start-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  margin-top: 50px;
  margin-left: 100px;
  margin-right: 100px;
}

.start-content img {
  max-width: 50%; /* Maximale Breite des Bildes */
  margin-bottom: 20px; /* Abstand zwischen Bild und Überschrift */
}



.banner-blue {
  background-color: var(--blue-color);
  padding: 50px;
  text-align: center;
  justify-content: center;
}

.banner-gray {
  background-color: var(--gray-color);
  padding: 50px;
  text-align: center;
  justify-content: center;
}

.centered-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  margin-top: 50px;
  margin-left: 100px;
  margin-right: 100px;
}

.text-content {
  max-width: 50%; /* Maximale Breite des Textinhalts */
  text-align: left;
}

.centered-content img {
  max-width: 50%; /* Maximale Breite des Bildes */
  margin-bottom: 20px; /* Abstand zwischen Bild und Überschrift */
}

h2 {
  color: black; /* Farbe der Überschrift */
  margin-bottom: 10px; /* Abstand zwischen Überschrift und Text */
  font-size: 28px; /* Erhöhe die Schriftgröße der Überschrift */
}

p {
  color: grey; /* Farbe des Textes */
  font-size: 20px; /* Erhöhe die Schriftgröße des Textes */
}

.button {
  padding: 10px 26px;
  font-size: 16px;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  background-color: #333;
  border: 2px solid #333;
  border-radius: var(--border-radius);
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  margin: 5px;
}



.button:hover {
  background-color: white;
  border-color: black;
  color: black;
  cursor: pointer;
}






.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 30px 30px 20px 30px;
  color: #2f2f2f;
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
}

.footer > * {
  flex:  1 100%;
}

.footer-addr {
  margin-right: 1.25em;
  margin-bottom: 2em;
}


.footer-addr h2 {
  margin-top: 1.3em;
  font-size: 15px;
  font-weight: 400;
}

.nav-title {
  font-weight: 400;
  font-size: 20px;
}

.footer address {
  font-style: normal;
  color: #999;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 2em;
}

.footer a {
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer a:hover {
  color: black; /* Ändern Sie die Farbe beim Hover-Effekt nach Bedarf */
  text-decoration: underline; /* Fügen Sie eine Unterstreichung hinzu, wenn der Link angefahren wird */
	padding-left: 8px;
  transition: all 0.3s ease-in-out;
}


.footer-nav {
  display: flex;
  flex-flow: row wrap;
}

.footer-nav > * {
  flex: 1 50%;
  margin-right: 1.25em;
}

.nav-ul a {
  color: #999;
}


.legal {
  display: flex;
  flex-wrap: wrap;
  color: #999;
}
  
.legal-links {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 24.375em) {
  .legal .legal-links {
    margin-left: auto;
  }
}

@media screen and (min-width: 40.375em) {
  .footer-nav > * {
    flex: 1;
  }
  
  .footer-addr {
    flex: 1 0px;
  }
  
  .footer-nav {
    flex: 2 0px;
  }
}
