/*---reset-zone---*/
body{
    margin: 0;
}

ul{
    padding: 0;
    list-style: none;
    margin: 0;
}

a{
    text-decoration: none;
    color: inherit;
}
/*---reset-zone---*/
body{
    background: url(../img/texture_ilmercatinovintage.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* header{
    display: flex;
} */

h1{
    color: #544;
    font-size: 3em;
    margin: 5px;
}

h2{
    margin-top: 5px;
    color: #544;
}

p{
    color: #544;
}

header{
    margin: 20px;
    display: flex;
    align-items: center;
}

header nav{
    width: 75%;
    margin: auto;
}

header nav ul{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header nav ul li{
    padding: 10px;
    font-size: 25px;
    border: 1px solid;
    border-radius: 10px;
    color: #686868;
    transition: all 250ms;
}

header nav ul li:hover{
    background-color: rgba(255,255,255,0.25);
    color: #fff;
}

.logo div{
    width: 100px;
    height: 100px;
    background: url(../img/logo_ilmercatinovintage.png);
    background-size: cover;
    background-position: 0;
    transform: rotate(-90deg);
    padding: 20px;
}/* chiude header */

main{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

main section:nth-child(2) p{
    align-items: stretch;
}

.titolo{
    border: 5px double;
    border-radius: 20px;
    border-color: #686868;
    margin: auto;
    width: 85%;
}

.titolo div{
    text-align: center;
    padding: 20px;
}/* chiude main */

footer{
    margin: 50px;
}

footer p{
    text-align: center;
    padding: 50px;
}

.contatti{
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.tornasu{
    font-size: 30px;
    color: #686868;
    position: fixed;
    bottom: 50px;
    right: 0;
    text-shadow: 0 2px 5px #000;
}