body{
    margin: 0%;
    padding: 0%;
    box-sizing: content-box;
    overflow: hidden;
    font-family: "DM Sans", sans-serif;
    font-weight: 100;
    font-style: normal;
    background-image: url(../img/sfondo-index.jpg);
}
@media only screen and (max-width: 1000px){
    body{
        background-position: center right;
    }
}
/* x scrermi grandi */
@media only screen and (min-width: 1000px){ 
    .menu{
        position: absolute;
        top: 20%;
        left: 10%;
        display: flex;
        flex-direction: column;
        width: 50%;
        z-index: 1000;
        border-left: .5px solid antiquewhite ;
    }
}
/* x scrermi piccoli */
@media only screen and (max-width: 1000px){
    .menu{
        position: absolute;
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
        z-index: 1000;
        background-color: rgba(22, 22, 22, 0.432);
    }
}


.menu a{
    position: relative;
    text-decoration: none;
    transition-duration: 0.5s;
    color: antiquewhite;
    transition-property: all;
    margin: 2% 15%;
    font-size: 3.5rem;
}
@media only screen and (max-width: 1000px){
    .menu a{
        position: relative;
        text-decoration: none;
        transition-duration: 0.5s;
        color: antiquewhite;
        transition-property: all;
        margin: 15% 15%;
        font-size: 2.5rem;
    }
}
.menu div {
    height: 15%;
    width: 100%;
    display: flex;
    text-align: left;
}
.menu img{
    position: relative;
    left: -10%;
    filter: invert(100%);
    transform: scale(+55%);

}
@media only screen and (max-width: 1000px){
    .menu img{
        left: 0px;
        margin: 12%;
        transform: scale(+100%);
    }
}

.menu div a:hover{
    transform: translateX(+15%);
}
/* .background-image img{
    position: absolute;
    top: 0%;
    width: 100%;
    height: auto;
    z-index: 1;
} */


