.image-modal {
	display: none;
	position: fixed;
	z-index: 10000;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	justify-content: center;
	align-items: center;
}

.image-modal.open {
	display: flex;
}

.modal-content {
	max-width: 90%;
	max-height: 90%;
	border-radius: 10px;
}

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

.project-image {
	cursor: pointer;
	transition: transform 0.2s ease;
}

.project-image:hover {
	transform: scale(1.03);
}