
        body {
            font-family: 'Montserrat', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #F5F5DC; /* Bianco Sporco/Crema */
            color: #1A2A52; /* Blu Profondo */
            line-height: 1.6;
        }
        header {
            background-color: #0D152A; /* Blu Profondo */
            padding: 15px 0;
            color: #F5F5DC;
            text-align: center;
        }
        nav {
            background-color:#6a994e; /* Verde */
            padding: 15px 0;
            text-align: center;
        }
        nav a {
            color:#0d1b2a; /* Blu Profondo */
            text-decoration: none;
            padding: 10px 20px;
            margin: 0 10px;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            font-weight: 600;
        }
        nav a:hover {
            background-color: #58803D; 
            color: #E0E1DD;
        }
        .container {
            max-width: 900px;
            margin: 30px auto;
            padding: 0 20px;
        }
        .post-article {
            background-color: #FFFFFF; /* Bianco Puro per il contenuto */
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .post-article h1 {
            color: #4DB6AC; /* Verde Acqua/Turchese */
            font-size: 2.5em;
            margin-bottom: 15px;
            text-align: center;
        }
        .post-meta {
            text-align: center;
            color: #64B5F6; /* Azzurro Cielo */
            font-size: 0.9em;
            margin-bottom: 30px;
        }
        .post-content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .post-content h2, .post-content h3 {
            color: #1A2A52; /* Blu Profondo */
            margin-top: 30px;
            margin-bottom: 15px;
            border-bottom: 1px solid #E0F2F7; /* Sottile linea azzurra */
            padding-bottom: 5px;
        }
        .post-content p {
            margin-bottom: 1em;
            text-align: justify;
        }
        footer {
            background-color: #1A2A52; /* Blu Profondo */
            color: #F5F5DC;
            text-align: center;
            padding: 20px 0;
            margin-top: 50px;
        }
        
        /* Immagine Logo*/
        header div img{
            width: 30%
        }

        figcaption{
            text-align: center !important
        }

        /* Media Queries per reattività */
        @media (max-width: 768px) {
            nav a {
                display: block;
                margin: 5px 0;
            }
            .post-article {
                padding: 20px;
            }
            .post-article h1 {
                font-size: 2em;
            }
        }