body {
  background-image:url("sfondo.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center; 
}
h1{
  font-family: Roboto;
  font-size: 48px;
  color: white;
  text-align: center;
  font-weight:600;
 
}
h2 {
  font-family: Roboto;
  font-size: 38px;
  color: black;
  text-align: center;
  
}
table{
  border-color:red;
  padding:10px;
  margin:5px;
  color:#0b6fa4;
}

.container {
  position: relative;
  display: inline-block;
}

.image {
  width: 200%;
  height: 300px;
}

.text {
  position: absolute;
  top: 50%;        /* posizione verticale del testo */
  left: 50%;       /* posizione orizzontale del testo */
  transform: none;
  color: white;    /* colore del testo */
  font-size: 24px; /* grandezza */
  font-weight: bold;
  text-shadow: 2px 2px 4px black; /* migliora la leggibilità */
}

  