/* masonary image */

.headerx{
    width:100%;
    height: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding :0 2vw ;
    z-index: 10;
    background-color: #161616;
    opacity: 1;
}
.containerx{
    position: relative;
    width: 100%;
    display: flex;
    gap:5px;
    padding: 100px 2vw;
}
.column{
    flex:1;
    display: flex;
    flex-direction: column;
    gap:5px;
}
.post{
    position: relative;
    overflow: hidden;
    width:100%;
}



.overlay{
    position: absolute;
    top:0;
    left: 0;
    width:100%;
    height:100%;
    background:#161605;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity:0;
    transition:0.5s;
    border-radius: 5px;
}

.post:hover .overlay{
    opacity: 0.65;
    cursor: pointer;
}