body {
	background-color: #CCCC66;
	color: #000000;
	background-size: cover;
}
.image-text {
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: rgba(204, 204, 102, 0.8);
	transform: translate(-50%, -50%);
	display: none; /* Initially hidden */
	transition: opacity 0.3s ease; /* Smooth fade-in/out */
}
.grid-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 5px;
	width: 100%;
	border: 10px solid transparent;
	padding: 10px;
}
.image-item {
	width: 100%;
	height: auto;
	text-align: center;
	position: relative;
	display: inline-block;
}
/* img { border: 4px solid #FFFFFF;  transition: border-color 0.3s ease; } */
.image-item img{
	border: 4px solid #FFFFFF;
	position: relative;
	transition: border-color 0.3s ease;
	/* box-shadow: -3px 1px 5px rgba(0,0,0,.5) */
}
#overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.1);
    padding: 20px;
    color: white;
    font-size: 24px;
}
