footer{
    background-color: #413d3c;
    padding: 4rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Für Mobile */
  color: var(--background);
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  text-align: center;
}

.footer-left {
  text-align: center;
}

.footer-right {
  text-align: center;
}

.footer p{
  font-size: 1.1rem;
  color: var(--color4);
}

.footer p a{
  color: var(--color4);
  text-decoration: none;
  font-size: 1.1rem;
}

.footer a:hover {
  text-decoration: underline;
}