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

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 60px); /* Platz für Footer */
}

.main-image {
  max-width: 65%;
  height: auto;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #f4f4f4;
}

footer a {
  color: #333;
  text-decoration: none;
  margin: 0 10px;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  display: none;
  z-index: 1000;
}

.cookie-popup button {
  margin: 5px;
}
