body.gallery {
    --shadow: drop-shadow(0 0 10px var(--clr-dark2));
    background-color: var(--clr-dark);
}

#main-nav__picture {
    pointer-events: none;
}

a {
    text-decoration: none;
    color: black;
}

#gallery-container {
    max-width: 1000px;
    margin: 25px auto 200px auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px;
    border-radius: 15px;
}

.gallery__card {
    width: 450px;
    border-radius: 15px;
    padding: 15px;
    background-color: var(--clr-dark2);
}

.gallery__card:hover img {
    transform: scale(1.1);
}

.gallery__card figure {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;

}

.gallery__card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 200ms ease-in-out;
}

.gallery__card h2 {
    margin-top: 1rem;
    text-align: center;
    font-family: var(--font-title);
    color: var(--clr-light-2);
    letter-spacing: .1rem;
}