body {
    font-family: 'Times New Roman', sans-serif;
    background-color: #1d1a17;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: top;
    justify-content: center;
    height: 100vh;
    color: #e3dfdb;
}

.container {
    max-width: 800px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    text-align: left;
}

h1 {
    color: #c9ad7c;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

p {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: justify;
}

.buttons {
    margin-top: 20px;
    text-align: center;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #544439;
    color: #e3dfdb;
    font-size: 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 20px;
    transition: background-color 0.3s ease;
}

.button:last-child {
    margin-right: 0;
}

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

/* CSS für die Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
    cursor: pointer;
}

.lightbox-caption {
    color: #e3dfdb;
    font-size: 18px;
    margin-top: 10px;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #e3dfdb;
    font-size: 24px;
    cursor: pointer;
}


.load-more-button-container {
    text-align: center;
    margin-top: 20px;
}

.load-more-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #544439;
    color: #e3dfdb;
    font-size: 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 20px;
    transition: background-color 0.3s ease;
}

.load-more-button:last-child {
    margin-right: 0;
}

.load-more-button:hover {
    background-color: #776653;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}

.gallery img {
    max-width: 200px; /* Maximale Bildbreite auf 200px beschränken */
    height: auto;
    margin: 10px;
    cursor: pointer;
}
