html, body {
	margin: 0;
	height: 100%;
	overflow: hidden;
	background: #000;
}

#viewer {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	cursor: grab;
}

#img {
	position: absolute;
	top: 0;
	left: 0;
	transform-origin: 0 0; /* nécessaire pour le zoom sous la souris */
	user-select: none;
	pointer-events: none;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
