*{
    box-sizing: border-box;
}
.gall{
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 15px;
    width: max-content;
    width: 100%;
    padding: 15px;
}
.gall .item{
    display: flex;
    width: 200px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background-color: rgba(255,255,255,0.5);
    padding: 10px;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
    margin: 0 auto;
    cursor: pointer;
  	transition:0.3s ease-out;
  	border-radius:8px;
}
.gall .item:hover{
    box-shadow: 0px 0px 20px rgba(245, 12, 190, 0.5);
}
.gall .item img{
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.gall .item .created{
    font-size: 12px;
    font-weight: bold;
    color: #555;
}
.gall .item .label{
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    font-size: 14px;
    line-height: 17px; /* fallback */
    height: 55px; /* fallback */
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
    padding: 3px;
}