/* imposto l'immagine */
body {
  margin: 0;
  /* Rimuove i margini di default del body */
}

header {
  background-color: rgba(255, 255, 255, 0.5);

  background-image: url('immagini/cielo.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  text-align: center;

  position:absolute;
  left:0; right:0;
  height: 250px;
}

/* imposto la sezione del menu con il suo sfondo semi trasparente */
div.menu {
  background-color: rgba(255, 255, 255, 0.5);

  background-image: url('immagini/pergamena.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  text-align: center;

  position:absolute;
  left:0; top:250px; bottom: 0;
  width: 178px;
}

div.menu nav{
  padding-top: 100px;
}

/* imposto i colori del testo */
body,
a,
a:visited {
  color: black;
}


.eventi {
  background-color: rgba(255, 255, 255, 0.5);

  border: solid 1px black;
  position: absolute;
  left:178px; top:250px; right:0; bottom:0;
  height: 1500px;
}

.evento {
  padding: 10px;
}