body {
    background-color: rgb(213, 213, 121);
    font-family: Georgia, "Times New Roman", serif;
    margin: 0;
}
.testa {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:85%;
    z-index:0;
}
.testa h1 {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:white;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 6vw;
    font-weight: bold;
    text-align: center;
    text-shadow: 5px 5px 10px black;
}
.testa img {
    width:100%;
    height:100%;
    object-fit:cover;
}
.menu-contenitore {
    position: fixed;
    top: 3vh;
    right: 3vw;
    font-size: 20px;
    text-align: center;
    z-index: 4;
}
.menu-pulsante {
    cursor:pointer;
    font-size: 40px;
    color: rgb(0, 100, 0);
    text-shadow: 5px 5px 5px black;
}
.menu-voci{
    display: none;
    position: absolute;
    right: 0px;
    width: 15vw;
    background-color:white;
    border-style: solid;
    border-color: orangered;
    border-width: 2px;
    max-height: 95vh;
    flex-direction: column;
}
.menu-voci a{
    display: block;
    line-height: 1.2;
    font-size: min(20px, 2vh); 
    padding: min(10px, 1.5vh);
    height: auto;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    color:orangered;
    white-space: nowrap;
    border-style: solid;
    border-color: orangered;
    border-width: 2px;
}
.menu-voci a:hover{
    background-color: white;
    transform:scale(1.1);
}
.menu-contenitore:hover .menu-voci{
    display: block;
}
section {
    width: 100%;
}
.corpo {
    position: relative;
    background-color: rgb(213, 213, 121); 
    margin-top: 85vh;
    z-index: 1;   
}
.testo {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 20px;
    padding-bottom: 30px;
    text-align: justify;
}
.testo h2 {
    text-align: center;   
    }
#locandine {
    float: left;
    margin-left: 10%;
    width: 35%;
    padding: 5px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 100px;
    background-color: rgb(0, 100, 0);
    color: white;
    box-shadow: 10px 10px 10px black;
}
#articoli {
    float: right;
    margin-right: 10%;
    width: 35%;
    padding: 5px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 100px;
    background-color: white; 
    color: rgb(0, 100, 0);
    box-shadow: 10px 10px 10px black;
}
table {
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
}
table td{
    width:50%;
}
.testotabsx {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 10px;
    aspect-ratio: 3/2;
    text-align: center;
    vertical-align: middle;
    color: orangered;
    background-color: white;
}
.testotabdx {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 10px;
    aspect-ratio: 3/2;
    text-align: center;
    vertical-align: middle;
    color: white;
    background-color: rgb(0, 100, 0);
}
.imgtab {
    width:100%;
    height: 100%;
    aspect-ratio: 3/2;
    object-fit:cover;
    display:block;
}
.pulsante-freccia{
    display:flex;
    justify-content:center;
    align-items:center;
    width:60px;
    height:60px;
    margin: auto;
    border-radius:50%;
    border-style: solid;
    border-color: orangered;
    background-color:white;
    color:orangered;
    text-decoration:none;
    font-size:30px;
    font-weight:bold;
    transition:0.3s;
}
.pulsante-freccia:hover{
    background-color:orangered;
    color:white;
    transform:scale(1.4);
}
footer {
    width: 100%;
    background-color: rgb(213, 213, 121);
    text-align: right;
}
#visite {
    margin-left: 20%;
    width: 60%;
    padding: 5px;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 10px;
    font-size: 40px;
    background-color: white;
    color: black;
    box-shadow: 10px 10px 10px black;
}
#visite img{
   width: auto; 
   height: 30px;    
}
#crediti {
    float: right;
    margin-right: 2%;
}