body{
font-family: Arial, sans-serif;
background:#111;
color:white;
margin:0;
padding:40px;
}

.title{
text-align:center;
margin-bottom:40px;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
gap:20px;
max-width:1100px;
margin:auto;
}

.item{
overflow:hidden;
cursor:pointer;
position:relative;
}

.item img{
width:100%;
display:block;
transition:transform .35s ease;
cursor:zoom-in;
}

.item:hover img{
transform:scale(1.06);
}

.tag{
display:inline-block;
background:#222;
border:1px solid #444;
padding:4px 8px;
margin:3px;
font-size:12px;
border-radius:6px;
}

/* LIGHTBOX */

#lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.85);
display:none;
flex-direction:column;
align-items:center;
justify-content:center;
padding:40px;
}


#lightbox img{
max-width:80%;
max-height:70%;
cursor:default;
}

.info{
max-width:600px;
text-align:center;
margin-top:20px;
}

.close{
position:absolute;
top:20px;
right:40px;
font-size:40px;
cursor:pointer;
}