/* testa della pagina */
#presentazione{
    position: relative;
    overflow: hidden;
}
#sfondoTitolo{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#boxImmagine{
    height: 50rem;
}
h1{
    color: #E1DFDE;
    width: 100%;
    position: absolute;
    top: 17rem;
    text-align: center;
    font-size: 5rem;
    font-weight: 500;
    background-color: #2026125f;
    padding: 1rem 0;
}

#descrizione{
    display: flex;
    width:80rem;
    margin: 5rem auto;
}
#descrizione h2{
    font-size: 1.8rem;
    color: #E8E4E6;
    width: 30rem;
    text-align: center;
}
#descrizione p{
    font-size: 1.3rem;
    text-align: left;
    width: 50rem;
    line-height:1.8rem;
}
#descrizione #check-in{
    background-color: #e8e4e656;
    padding: 0.3rem;
}
/* Photogallery */

#Photogallery {
    margin: 5rem auto;
    display: flex;
    width: 80rem;
}
#Photogallery h2{
    text-align: center;
    width: 30rem;
    font-size: 1.8rem;
    color: #E8E4E6;
}
#boxFoto{
    width: 50rem;
    display: flex;
    flex-wrap: wrap;
}
#Photogallery #boxFoto div{
    height: 16rem;
    width: 16.4rem;
    margin:2px;
    background-color:#E1DFDE;
    overflow: hidden;
}
#Photogallery #boxFoto div img {
    /* background-color: aqua; */
    width: 100%;
    height: 100%;
    object-fit: cover;
}
div #overlay{background: #EA444C} 

/* Servizi */

#servizi{
    width: 80rem;
    margin: 2rem auto;
    display: flex;
}
#servizi h2{
    width: 30rem;
    text-align: center;
    font-size: 1.8rem;
    color: #E8E4E6;
}
#boxServizi {
    width: 50rem;
    display: flex;
    flex-wrap: wrap;
}
#servizi img{
    width: 2rem;
    padding-right: 0.5rem;
    /* background-color: #E8E4E6; */
}
#servizi #boxServizi div{
    background-color: #e8e4e656;
    margin: 0.5rem;
    padding: 0.5rem;
    width: auto;
}
#boxServizi div{
    display:flex;
    width: 28rem;
}
#servizi p{
    margin: auto;
    font-size: 1.3rem;
}

/* media query */
@media (max-width: 900px) {
    #descrizione{
        flex-wrap: wrap;
        width: 50rem;
    }
    #descrizione h2{
        width: auto; 
    }
    #Photogallery {
        flex-wrap: wrap;
        width: 50rem;
    }
    #Photogallery h2{
        width: auto;
    }
    #servizi{
        flex-wrap: wrap;
        width: 50rem;
    }
    #servizi h2{
        width: auto;
    }
}
@media (max-width: 600px) {
    #descrizione{
        width: 34rem;
    }
    #Photogallery {
        width: 34rem;
    }
    #Photogallery #boxFoto #ultimaFoto{
        width: 33rem;
    }
    #servizi{
        width: 34rem;
    }
}
@media (max-width: 400px) {
    #descrizione{
        width: 25rem;
    }
    #descrizione #check-in{
        font-size: 1.1rem;
    }
    #Photogallery {
        width: 25rem;
    }
    #Photogallery #boxFoto div{
        width: 25rem;
        height: 25rem;
    }
    #Photogallery #boxFoto #ultimaFoto{
        width: 25rem;
    }
    #servizi{
        width: 25rem;
    }
}