html, body {
    height: 100%; /* Assicura che l'elemento occupi tutta l'altezza */
    margin: 0;
    padding: 0;
}

body {
    background-image: url('Tavolo.jpg'); /* Sostituisci con il nome del tuo file immagine */
    background-size: cover; /* Ridimensiona l'immagine per coprire l'intera area */
    background-position: center center; /* Centra l'immagine */
    background-repeat: no-repeat; /* Non ripetere l'immagine */
    /* Per mantenere l'immagine fissa durante lo scrolling */
    background-attachment: fixed; 
}

.contenuto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 156vh; /* Altezza viewport */
    color: white; /* Colore testo, da adattare all'immagine */
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Ombra testo per leggibilità */
}

.contenuto h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.contenuto p {
    font-size: 2.6em;
}