body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

header {    
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.img-sfondo{
    position: relative;
    width: 100%;
    height: 65vh;
    background-image: url(img/sfondo.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.img-sfondo:before{
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.75);
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 1;
}


.container-zindex{
    position: relative;
    z-index: 3!important;
}

header .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

header p {
    font-size: 1em;
    line-height: 24px;
    margin-bottom: 40px;
}

header .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #000;
    background-color: #edbe00;
    text-decoration: none;
    border-radius: 5px;
}

header .btn:hover {
    background-color: #edbe00;
}

#contacts {
    background-color: #fff;
    color: #333;
    padding: 50px 0;
    text-align: center;
}

#contacts .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

#contacts h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

#contacts p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

#contacts a {
    color: #edbe00;
    text-decoration: none;
}

#contacts a:hover {
    text-decoration: underline;
}


@media screen and (max-width: 1000px){
    .img-sfondo{
        height: 94vh;
    }
}