.gallery{
    min-height: 100vh;
    background:linear-gradient(315deg,#E7D045, #A04EF6);
    
}

.gallery .controls{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:20px 0;
    list-style: none;
}

.gallery .controls .buttons{
    height:40px;
    width: 180px;
    background:#fff;
    color:black;
    font-size: 20px;
    line-height: 40px;
    cursor: pointer;
    margin:5px;
    
    box-shadow: 0 3px 5px rgba(0,0,0,.3);
    text-align: center;
    border:2px solid black;
    font-weight: bolder;
}

.gallery .controls .buttons.active{
    background:coral;
    color:#fff;
}

.gallery .image-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery .image-container .image{
    height:250px;
    width: 250px;
    overflow: hidden;
    border:5px solid ;
    box-shadow: 0 3px 5px rgba(0,0,0,.3);
    margin: 20px;
    border:solid 1.5vmin #eee;
        border-bottom-color:#fff;
        border-left-color:#eee;
        border-radius:1px;
        border-right-color:#eee;
        border-top-color:#ddd;
        box-shadow:0 0 5px 0 rgba(0,0,0,.25) inset, 0 5px 10px 5px rgba(0,0,0,.25);
        box-sizing:border-box;
        display:inline-block;
       
        
    
}

.gallery .image-container .image img{
    height: 100%;
    width:100%;
    object-fit: cover;
}

.gallery .image-container .image:hover img{
    transform: scale(1.4);
}
