/* img.subpage-banner {
    z-index: -1;
    width: 100%;
    height: 70vh;
    object-fit: cover;
    object-position: 75% 50%;
} */
img.object-position-center {
    object-position: center;
}
#members {
    display: flex;
    flex-wrap: wrap;
    inline-size: fit-content;
    gap: 50px;
    margin: auto;
    margin-bottom: 5rem;
}
@media screen and (width > 350px) {
    #members {
        max-width: 75%;
    }
}
#members article img {
    max-width: 200px;
    max-height: 200px;
}
#members article {
    text-align: center;
    flex: 1 1 10%;
    padding: 1rem;
}

#members article img:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
    transition-property: transform, filter;
    transition-duration: 0.4s, 0.4s;
}

/* .subpage-title {
    text-align: center;
}

.subpage-title h1 {
    margin: 0;
    font-size: 6rem;

    position: relative;
    top: -4rem;
    font-style: italic;
    -webkit-text-stroke: 1px #090a0a;
    color: transparent;
    text-shadow: 2px 2px 0px var(--deep-blue);

    animation: bounceInUp 1s;
    animation-play-state: running;
} */