.gallery {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-width: 32%;
    -moz-column-width: 32%;
    column-width: 32%;
    height: auto;
}

.gallery .pics {
    display: flex !important;
    flex-direction: column !important;
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease;
    height: auto;
    overflow: auto;
}

.gallery .pics label{
    color: gray;
    font-family: Georgia, serif;
    font-size: 1.2rem;
    overflow: auto;
}

.gallery .animation {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

@media (max-width: 450px) {
    .gallery {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        -webkit-column-width: 95%;
        -moz-column-width: 95%;
        column-width: 95%;
    }
}

@media (max-width: 400px) {
    .btn.filter {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }
}
