section{
    padding: 2rem 5rem;
    font-family: var(--main-font-family);
}
.gallery-body{
    background-color: rgb(0, 0, 0);
}
#gallery-header{
    display: flex;
    gap: 2rem;
    align-items: end;
    justify-content: space-between;
    margin-top: 30Rrem;
}
#gallery-header h6{
    color: var(--main-color);
    font-size: .9rem;
    font-weight: 500;
    text-transform: uppercase;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
#gallery-header h1{
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
}
.gallery-header-right{
    width: 35%;
    font-size: .9rem;
    color: #aeaeae;
}

.gallery-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .3rem;
}
.gallery-item{
    width: 33%;
}
.gallery-item img{
    max-width: 100%;
    filter: brightness(.8);
}

@media screen and (max-width: 768px) {
    section{
        padding: 2rem 1.25rem;
    }
    #gallery-header {
        display: block;
    }

    .gallery-header-right {
        width: 100%;
    }

    .gallery-item {
        width: 100%;
    }
}
