body {
  background: #3a0066;
  color: white;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
}


.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 2rem;
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    filter: blur(6px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}

.navbar img {
  height: 40px;
}

.back-button {
  font-family: "Montserrat", sans-serif;
  color: #ccc;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}

.back-button:hover {
    color: white;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.content h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 50px;
  color: #fff;
  margin-bottom: 1rem;
}

.content p {
  color: #ddd;
  line-height: 1.6;
}


.impressum-footer {
  background-color: #1f1a17;
  color: #e6e0dc;
  padding: 30px 20px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
}

.impressum-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.impressum-logo img {
  height: 60px;
}

.impressum-text p {
  margin: 4px 0;
  font-size: 0.9rem;
}

.impressum-text a {
  color: #e6e0dc;
  text-decoration: underline;
}

.impressum-icons a {
  margin-left: 15px;
  font-size: 1.5rem;
  color: #e6e0dc;
  transition: color 0.3s ease;
}

.impressum-icons a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .impressum-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .impressum-icons {
    margin-top: 10px;
  }
}