.gallery{
    min-height: 100vh;
    padding-bottom: 100px;
}

.gallery .controls{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:20px 0;
    list-style: none;
}

.gallery .controls .buttons{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color:#666;
    font-size: 15px;
    line-height: 40px;
    cursor: pointer;
    margin:20px;
    border-radius:7px;
    border: 1px solid #e9ecef;
    text-align: center;
}

.gallery .controls .buttons:hover{
    background:#ee3234;
    color:#fff;
}

.gallery .controls .buttons.active{
    background:#ee3234;
    color:#fff;
}

.gallery .image-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery .image-container .image{
    height:250px;
    width: 350px;
    overflow: hidden;
    border:15px solid #fff;
}

.gallery .image-container .image img{
    height: 100%;
    width:100%;
    object-fit: cover;
}

/* .gallery .image-container .image:hover img{
    transform: scale(1.4);
} */