.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-template-rows: 2;
    gap: 30px;
    margin: 0 auto;
    max-width: 1020px;
    padding-top: 10em;
}

body {
    background-image: url("Images_parasite/parasite_lawn\ 1.jpg");
    background-size: cover;
}

.gallery p {
    cursor: pointer;
}

#lightbox_mask {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: none;
}

#lightbox {
    background-color: #FFF;
    position: fixed;
    width: 60%;
    left: 20%;
    margin: 2em auto;
    line-height: 0;
    padding: 10px;
    z-index: 3;
    display: none;
}


/* figure {
    display: grid;
    align-items: end;
    grid-template: 1fr/1fr;
} */