body
{
  /* Imposta l'immagine di sfondo con un overlay gradiente scuro per migliorare la leggibilità */
      background-size: cover;
	  background-color: #000;
      background-image: linear-gradient(rgba(250, 250, 250, 0.2), rgba(250, 250, 250, 0.5)),
                      url("../sfondo/sfondo1.png");
					    background-size: cover;        /* Fa scalare l'immagine per coprire tutta l'area */
		background-position: center;   /* Centra l'immagine */
		background-repeat: no-repeat;  /* Evita la ripetizione */
		background-attachment: fixed;  /* Fa restare l'immagine fissa mentre scrolli */
      width: 100%;
      font-family: verdana;
      margin: 0;
      padding: 0;
      box-sizing: border-box;

}
    /* Stile di base per tutti i link */
    a {
      text-decoration: none;
      color: #222;
	  /*font-weight:bold;*/
    }
    /* Stili per il logo */
    img.logo {
      height: auto;
      /*padding-top: 20px;*/
	  margin-right: 1%;
	  margin-top: 1%;
    }
div.logo
{
	width:100%;
	text-align:right;
}

div.container
{
  width:100%;
  text-align: center;
}

table.table1
{ margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
}

tr
{
  text-align: center;
}
td
{
  font-size: 15pt;
  color: white;

  width:33%;
}

img.icon
{
  width:100px;
}

img.icona
{
  width:78px;
}

img.icohp
{
  width:85px;
}

img.icomappa
{
  width:100px;
}


/*menu*/
*
{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body
{
  font-family: verdana;
}
nav /*banda nera in alto*/
{
  position: relative;
  width: 100%;
  height: 50px;
  background-color: black;
}

a
{
  text-decoration: none;
}
.nav-links
{
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  float: left;
}
.nav-links li
{
  list-style: none;
}
a.link
{
  text-decoration: none;
  color: white;
  font-family: verdana;
  font-size: 24px;
}
div.menu-icon /*barre bianche*/
{
  position: absolute;
  width: 10%;
  height: 100%;
  color: white;
  font-size: 30px;
  left:0;
  display: none;
  margin-top:2px;
}
@media screen and (max-width: 3000px)
{

  .nav-links
  {
    position: fixed;
    height: 100%;
    width:75%;
    background: black;
    flex-direction: column;
    left: -100%;
    transition: 0.55s;
  }
  div.menu-icon
  {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    margin-left: 12px;
  }
  .nav-links.open
  {
    left:0px;
    
  }
}
