
/* LIGHTBOX */

#lightbox{
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

#lightbox img{
	max-width: 90vw;
	max-height: 90vh;
}

#lb-close,
#lb-prev,
#lb-next{
	position: absolute;
	background: rgba(255,255,255,0.2);
	border: none;
	color: white;
	font-size: 40px;
	padding: 10px 18px;
	cursor: pointer;
}

#lb-close{ top: 20px; right: 30px; }
#lb-prev{ left: 30px; }
#lb-next{ right: 30px; }

.gallery{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.gallery1{
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.gallery img{
    display: block;
    width: 100%;
    height: auto;
	margin: auto;
    object-fit: contain;
}

/* 1 column on narrow layouts */
@media (max-width: 720px){
    .gallery{
        grid-template-columns: 1fr;
    }
}

.gif
{
	width:100%;
}
