.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 40px;
}
.photo-gallery > div {
    max-width: calc(100vw - 120px);
    animation-delay: 0.5s;
}
.photo-gallery.thumbnail > div,
.photo-gallery.thumbnail > img {
    max-width: 150px;
}
.photo-gallery-photo-wrapper {
    width: 350px;
    display: grid;
    grid-template: "thingy";
    align-items: center;
    justify-items: center;
}
.photo-gallery-photo-wrapper > * {
    grid-area: thingy;
}
.photo-gallery-photo-wrapper > img {
    width: auto;
    height: auto;
    max-height: calc(100% - 40px);
    max-width: calc(100% - 40px);
}
.lightbox {
    padding: 20px;
}
.lightbox::backdrop {
    background-color: rgb(0,0,0,0.8);
}
.lightbox img {
    height: auto;
    width: auto;
    max-height: 90vh;
    max-width: 90vw;
    padding: 0px;
    margin: 0px;
}
.photo-gallery-toggle-button {
    justify-self: end;
    align-self: end;
    z-index: 2;
    padding: 10px;
    background-color: var(--turquoise);
    color: var(--baseFont);
    width: 3em;
    height: 3em;
    border-radius: 3em;
    transition-duration: 0.4s;
    border: 0px;
}
.photo-gallery-toggle-button:hover {
    background-color: var(--orange);
}