
body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #f4f4f4;
  margin: 0;
  padding: 20px;
}
h1 {
  color: #003399;
}
.galerie {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.galerie img {
  max-width: 200px;
  height: auto;
  border: 4px solid white;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.galerie img:hover {
  transform: scale(1.05);
}
#searchInput {
  padding: 10px;
  width: 300px;
  font-size: 16px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.zurueck-container {
  margin-top: 40px;
  text-align: center;
}

.zurueck-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #003399;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.zurueck-button:hover {
  background-color: #001f66;
}