/* Grundlegende Einstellungen */
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* Hintergrundbild */
.background {
  background: black;
  background-size: cover;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.content {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 80%;
  height: auto;
  max-height: 40vh;
  object-fit: contain;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
  padding: 10px 0;
  color: white;
}

.footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer nav ul li {
  display: inline;
}

.footer nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
}

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