body{
    margin: 0%;
    padding: 0%;
    box-sizing: content-box;
    overflow: hidden;
    font-family: "DM Sans", sans-serif;
    font-weight: 100;
    font-style: normal;
}
@media only screen and (max-width: 1000px){
    body {
        max-width: 100vw;
    }
}
/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }
.background-image img{
    position: absolute;
    top: 0%;
    z-index: 1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
@media only screen and (max-width: 1000px){
  .background-image img{
    width: 150%;
}
}
@media only screen and (min-width: 1000px){
  .menu{
    position: absolute;
    left: 2%;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 65%;
    height: 100%;
    z-index: 1000;
    border-left: .5px solid antiquewhite ;
    background-color: rgba(24, 24, 24, 0.3);
    overflow-y: scroll;
}
}
@media only screen and (max-width: 1000px){
  .menu{
    position: absolute;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(24, 24, 24, 0.3);
    overflow-y: scroll; 
    overflow-x: hidden;
}
}
.menu #logo{
  width: 40%;
  height: auto;
  padding-top: 5%;
  filter: invert(100%);
}
@media only screen and (max-width: 1000px){
.menu #logo{
    width: 70%;
    height: auto;
    padding: 5%;
    filter: invert(100%);
}
}

.immagini{
    margin: 5% 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
}
.immagini img {
  width: 40%;
  height: auto;
  display: inline-block;
  object-fit: cover;
}
@media only screen and (max-width: 1000px){
  .immagini{
    margin: 5% 0px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}
.immagini img {
  margin-top: 2%;
  width: 90%;
  height: auto;
  display: inline-block;
  object-fit: cover;
}
}






.menu h2{
    padding: 2%;
    color: rgb(228, 212, 194);
    line-height: 33px;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: .3px;
    text-align: justify;
}
@media only screen and (max-width: 1000px){
  .menu h2{
    padding: 4%;
    color: rgb(238, 225, 211);
    line-height: 30px;
    font-size: 18px;
    font-weight: 300;
    text-align: justify;
}
}
@media only screen and (min-width: 1000px){
  #mobile {
    display: none;
  }
}