body {
    font-family: Arial;
    color: #F5FFFA;
    background: #008B8B;
    text-align: center;
}
h1 {
    color: #F5FFFA;        /* Schriftfarbe für die Überschrift */
}

#gallery img {
    width: 20vw;
    height: 20vw;
    max-width: 150px;
    max-height: 150px;
    object-fit: cover;
}

#modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#modal.hidden {
    display: none;
}

#modal-img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 6px;
}

.controls {
    margin-top: 20px;
}

.controls button, .controls a {
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 18px;
    cursor: pointer;
}
#close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
img.lazy {
    background: #ddd;
    min-height: 150px;
}
