body {
	margin: 0;
	background: black;
	color: white;
	font-family: sans-serif;
  user-select: none;
}

.gallery {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
	max-width: 900px;
	margin: auto;
}

.gallery img {
	width: 100%;
	cursor: pointer;
	border-radius: 6px;
	transition: transform 0.2s;
}

.gallery img:hover {
	transform: scale(1.01);
}

.overlay {
	background: black;
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	touch-action: manipulation;
}

.overlay img {
	max-width: 100%;
	max-height: 100%;
}

.hint {
	position: fixed;
	bottom: 20px;
	width: 100%;
	text-align: center;
	font-size: 14px;
	opacity: 0;
  transition: opacity 0.5s ease;
}
