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

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
  background: #D4CBB6 !important;
  background-color:#D4CBB6 !important;
}

.header-left, .header-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo {
  max-width: 100px; /* Passe die Größe des Logos an */
  height: 50px;
}

.header-button {
  border: none;
  padding: 10px 20px;
  margin: 0 10px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

.header-button:hover {
  background-color: #45a049;
}

@media (max-width: 768px) {
  header {
    padding: 10px;
  }

  .header-left, .header-right {
    padding: 0 10px;
  }

  .header-center {
    left: 50%;
    transform: translateX(-50%);
  }

  .header-button {
    font-size: 14px;
  }

  .logo {
    max-width: 80px; /* Logo bei kleineren Bildschirmen kleiner machen */
  }
}
