/* ===== Default ===== */
body {
	font-family: 'OpenDyslexic', Arial, sans-serif;
	font-size: 18px;
	line-height: 1.8;
	margin: 0;
	padding: 0;
	background-color: #ffffff;
	color: #111111;
}

/* ===== Logo ===== */
.logo {
	display: block;
	margin: 0 auto;
	width: 75%;
	max-width: 800px;
	text-align: center;
}

/* ===== Testo ===== */
.testo {
	margin: 0 4%;
}

/* ===== Rotella ===== */
.spinner {
	width: 30px;
	height: 30px;
	border: 4px solid #ccc;
	border-top: 4px solid #004080; /* colore blu scuro */
	border-radius: 50%;
	animation: spin 2.5s linear infinite;
	margin: 0 5%;
}

@keyframes spin {
	0%   { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}


/* ===== Titoli ===== */
h1, h2, h3 {
	font-family: 'Rubik', Arial, sans-serif;
	line-height: 1.6;
	margin-top: 1em;
	margin-bottom: 0.5em;
}

h1 {
	font-size: 3em;
	text-align: center;
	color: #003366;
}

h2 {
	font-size: 2em;
}

h3 {
	font-size: 1.5em;
}

/* ===== Link ===== */
a {
	color: #004080;
	text-decoration: underline;
}
a:hover,
a:focus {
	color: #007acc;
	outline: none;
}

/* ===== Footer ===== */
#footer {
	text-align: center;
	margin: 2em 0;
	font-size: 0.9em;
}

/* ===== Tema scuro automatico ===== */
@media (prefers-color-scheme: dark) {
	body {
		background-color: #121212;
		color: #e0e0e0;
	}
	a {
		color: #80b3ff;
	}
	a:hover,
	a:focus {
		color: #a3ccff;
	}
	hr {
		border-color: #444;
	}
	.logo {
	filter: brightness(0) invert(1);
	}
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
	h1 {
		font-size: 2em;
	}
	h2 {
		font-size: 1.5em;
	}
	h3 {
		font-size: 1.2em;
	}
	.logo {
		width: 75%;
	}
	.testo {
		margin: 0 2%;
	}
}
193.205.139.35