html, body { margin: 0; }

#scene-container {
	width: 100vw;
	height: 100vh;
	background-color: black;
}

.centered-image {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 240px; 
	z-index: 10; /* S'assurer que l'image est au-dessus du canvas 3D */
}