body {
background-color: silver;
}

.intestazione {
display: inline-flex;
flex-direction: row;
}

.nome {
margin: auto;
margin-left: 30px;
}

#menu {
text-decoration: none;
color: #dadada;
background-color: black;
}

#menu ul {
padding: 0px;
list-style: none;
display: inline-flex;
flex-direction: row;
background-color: black;
margin: 0px;
}

#menu li {
padding: 10px;
position: relative;
width: max-content;
}

#menu li:hover {
background-color: #555;
}

#menu a {
color: #dadada;
text-decoration: none;
}

#menu li ul {
display: none;
}

#menu li:hover ul {
display: block;
position: absolute;
left: 0;
top: 100%;
width: max-content;
background: black;
}

#menu li ul li {
width: 8.1em;
}

.active {
background-color: #848484;
color: #dadada;
}

.corpo {
color: black;
margin: 7.5px;
}
