.tt-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

}

.tt-album img{

width:100%;

height:260px;

object-fit:cover;

cursor:pointer;

transition:0.3s;

}

.tt-album:hover img{

transform:scale(1.05);

}

.tt-load-more{

display:flex;

align-items:center;

justify-content:center;

font-size:40px;

background:#eee;

cursor:pointer;

}

#tt-lightbox{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.9);

display:none;

z-index:9999;

}

.tt-popup{

width:80%;

margin:50px auto;

}

.tt-close{

position:absolute;

top:20px;

right:40px;

font-size:40px;

color:white;

cursor:pointer;

}