body {
    font-family: Arial, sans-serif;
    background-color: darkgreen;
    margin: 0;
    padding: 20px;
}
h1, h2 {
    text-align: center;
}
.menu {
    text-align: center;
    margin-bottom: 20px;
}
.menu a {
    margin: 0 15px;
    text-decoration: none;
    color: #ff0022;
    font-size: 20px;
}
.menu a:hover {
    text-decoration: underline;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.gallery img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    cursor: pointer;
}
.gallery img:hover {
    transform: scale(1.05);
}
.gallery img.fullscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 9999;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    border-radius: 0;
}

.menu button {
  font-size: 20px;          /* Schriftgröße */
  padding: 10px 20px;       /* Innenabstand (oben/unten, rechts/links) */
  margin: 10px 10px;           /* Abstand zwischen Buttons */
  background-color: darkgreen;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.menu button:hover {
  background-color: #00b32d;
}