body {
  background-image: url('../img/sfondo.jpg'); /* percorso relativo */
  background-size: cover;       /* adatta l’immagine allo schermo */
  background-repeat: no-repeat; /* non ripetere l’immagine */
  background-attachment: fixed; /* sfondo fisso quando scrolli */
  background-position: center center;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f0f8ff; /* colore a piacere */
}

.table-striped tbody tr:nth-of-type(even) {
  background-color: #fff; /* oppure #fff per bianco */
}
