.center {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    /* background-color: rgba(35, 35, 35, .1); */
}

.center-item {
    padding: 4px;
    margin-right: 2%;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #eeeeee;
    width: 31%;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    flex-wrap: wrap;
    /* height: 300px; */
    overflow: hidden;
    transition: box-shadow 1s;
}

.moreds {
    text-align: center;
    line-height: 25px;
    width: 60px;
    border: 1px solid #eee;
    font-size: 10px;
    color: #c2c2c2;
    float: right;
    border-radius: 5px;
    background-color: #FFF;
    transition: background-color 1s;

}

.cesr {
    /* margin: 15px auto; */
    margin-top: 15px;
}

.imagesdsa {
    border: 1px solid #000;
    width: 100%;
    transition: transform 1s;
}

.center-item:hover {
    cursor: pointer;
    box-shadow: -5px 0px 10px #eee, 5px 0px 10px #eee, 0px -5px 10px #eee, 0px 5px 10px #eee;
}

.center-item:hover img {
    transform: scale(1.1);
    /* background-color: #2979ff; */
    /* color: #fff; */
}

.center-item:hover .moreds {
    background-color: #2979ff;
    color: #fff;
}

/* @keyframes jss{
    0%{

    }
    100%{

    }
}
.center-item:hover{
    box-shadow: ;
} */