/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 28 2025 | 10:30:35 */
/* Nasconde inizialmente tutte le stelle */
.stelle-container > div {
	opacity: 0;
	/* Inizialmente invisibile */
	transform: translateY(20px);
	/* Spostate verso il basso */
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
/* Effetto visibile quando l'elemento entra nel viewport */
.stelle-container > div.scrolled-into-view {
	opacity: 1;
	/* Diventa visibile */
	transform: translateY(0);
	/* Torna alla posizione originale */
}
.stelle-container {
	margin-top: -200px;
}
.stelle-container div {
	margin-top: -200px;
}
@media only screen and (min-width: 1100px) {
	.stella-horror {
		transform: translate(230px, 0);
	}
}
@media only screen and (max-width: 1200px) {
	.stelle-container div{
		margin-top: 40px;
	}
}
