@charset "utf-8";
/* CSS Document */
/* OPZIONE 1: Per l'immagine inserita dentro la pagina */
.img-responsiva {
  max-width: 100%;
  height: auto;
  display: auto;
  margin: 0 auto;
}

/* OPZIONE 2: Per l'immagine usata come sfondo di tutta la pagina */
body {
  background-image: url('pcnetwork_mod.jpg'); /* Inserisci il nome reale del tuo file */
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}