/*Font e Sfondo*/
body{
background-color: rgb(73, 71, 71);
text-align: center;
font-family: 'Titillium Web', sans-serif;
color: white;
/*Stile barra navigazione*/
}
header {
    background-color: #333;
    height: 50px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    width: auto;
    border-radius: 10px;
}
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  
  nav ul li {
    margin-right: 20px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
  }
  
  nav ul li a:hover {
    text-decoration: underline;
  }
 /*Stile bottoni*/
  .button {
    display: inline-block;
    text-decoration: none;
    font-size: 18px;
    width: auto;
    margin-bottom: 1rem;
    padding: 0 20px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: .1px;
    white-space: wrap;
    border-radius: 8px;
    cursor: pointer;
    color: #fff8f1;
    background-color: darkred;
    box-shadow: 0 5px 0 rgb(99, 5, 5)
}

.button:active {
    box-shadow: none;
    transform: translateY(5px)
}
.box {
    text-align: center;
    margin: 0 auto;
    width: 300px;
    border: 5px solid white;
    padding: 20px;
  }
  
  h2 {
    margin-top: 0;
}
/*Spostamenti testo e div vari*/
.sinistra{
text-align: left;
margin-left: 50px;

}
.centramento{
text-align: center;

}
.maps{
text-align: right;
padding-right: 177px;

}
.desc{
text-align: left;
padding-left: 177px;

}    