body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

main {
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.logo {
  width: 80%;
  max-width: 300px;
  height: auto;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.button {
  background-color: #ff6600;
  color: #000;
  text-decoration: none;
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #ffa040;
}

.contact a {
  color: #ffa040;
  text-decoration: none;
  font-size: 1.1rem;
}

footer {
  margin-top: 2rem;
}

footer a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
}

#impressum {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #ccc;
}
