


/* 1. Intestazione Fissa */
        header {
            position: fixed;
            top: 0;
            background-color: lightblue;
            padding: 10px;
            width: 100%;
            height: 150px;
            z-index: 1000;
            text-align: center;
            
        }

/* 2. Contenitore Centrale (Scorrevole) */
        .main-container {
            position: absolute;
            top: 230px; /* Altezza dell'header */
            bottom: 20px; /* Altezza del footer */
            left: 0;
            width: 100%;
            background-color: lightblue;
        }



/* 3. Piè di pagina Fisso */
        footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40px;
            background-color: lightblue;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            z-index: 1000;
        }






/* Adattamento per dispositivi mobili */
        @media (max-width: 600px) {
            header {
                flex-direction: column;
                height: 80px;
                padding: 5px;
                justify-content: center;
            }
            
            header h1 {
                font-size: 1rem;
                margin-bottom: 5px;
            }

            nav a {
                margin: 0 8px;
                font-size: 0.8rem;
            }

            .main-container {
                top: 80px; /* Aumentato per l'header su due righe */
            }
        } 