/* Stile generale */
body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif; /* Font elegante */
    background-color: #f5f5f5; /* Colore di sfondo chiaro */
    color: #333333; /* Testo scuro */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Altezza piena */
}

/* Contenitore principale */
.container {
    text-align: center;
    padding: 20px;
}

/* Stile dell'intestazione */
header h1 {
    font-size: 2.5em;
    color: #333333;
    margin: 0;
}

/* Nome del sito in evidenza */
header h1 span {
    color: #d49f00; /* Accento dorato */
    font-weight: bold;
}

/* Stile responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8em;
    }
}
