body {
	margin: 0;
	overflow: hidden; /* Empêche le défilement pendant l'animation */
}

.elementor {
	position: relative;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: grid;
	z-index: 1000; 
	pointer-events: none;
	opacity: 0;
	--columns: 20;
	grid-template-columns: repeat(var(--columns), 1fr);
}

.overlay div {
	background: #000;
}