#gallery-hero {
    /* margin: 5vmax 0; */
    height: 8vmax;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex-wrap: nowrap;
    justify-content: center;
}

#gallery-hero h1 span {
    font-family: "Geist", sans-serif;
    font-size: 8vw;
    font-weight: 600;
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
    /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
    text-transform: uppercase;
}
#gallery{
    width: 100%;
    height: fit-content;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    position: sticky;
    flex-direction: column;
    gap: 3vw;
}

#gallery-down{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}
#gallery .images {
    width: 45vmax;
    height: 25vmax;
    /* background-color: red; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#gallery .images img {
    width: 45vmax;
    height: 25vmax;
    /* background-color: red; */
    overflow: hidden;
}



@media screen and (max-width: 1000px) {
    #gallery{
      height: 60vh;
    }
    #gallery-down{
        flex-direction: column;
        height: 100%;
        gap: 6vw;
        align-items: center;
        justify-content: right;
        margin-top: 10vw;
    }
}