body {
  background-color: #1a1a1a;
  color: white;
  font-family: 'Open Sans', sans-serif;
}

nav {
  background-color: #FFB900;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex: 1;
}

nav li {
  display: inline-block;
  margin-right: 20px;
}

nav li a {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  display: block;
  transition: color 0.3s ease;
}

nav li a:hover {
  color: #ffd54f;
}

.kontext {
  width: 80%;
  margin: auto;
  margin-bottom: 60px;
  text-align: left;
}

a {
  color: white;
}

.btn {
  background-color: #FFB900;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #ffd54f;
}

h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.logo-container img {
  width: 100px;
  margin-right: 50px;
}

.logo-container img:last-child {
  margin-right: 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  margin-left: 20px;
  margin-right: 20px
}

section {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 30px;
}

section img {
  width: 150px;
  height: auto;
  margin: 0 30px; /* Hinzugefügt, um Abstand zwischen den Logos hinzuzufügen */
}

/* Footer */
footer {
  left: 50%;
  transform: translateX(-50%);
  position: fixed;
  bottom: 0;
  background-color: black;
  color: white;
  text-align: center;
  padding: 10px;
  min-height: auto; /* Hier wird die Höhe auf "auto" gesetzt */
}

footer a {
  color: #FFB900;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
