* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.presentazione {
    position: relative;
    height: 20vh;
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.presentazione::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: auto;
    width: 100%;
    height: 6vh;
    background: linear-gradient(to bottom, transparent, #fffcf9);
}

.presentazione .presentazione-background {
    height: 20vh;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}

.about-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 80vw;
    height: auto;
    margin: 5vh 10vw 0 10vw;
    overflow: hidden;
    background: #fff;
    box-shadow: -2px 5px 10px #888888;
    border-radius: 10px;
    /*background-image: url("assets/seamless_background.png");
    background-repeat: repeat;
    background-size: 200px 200px;*/
}

#persona {
    display: flex;
    height: 100%;
}
.about-section .descrizione {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    background-color: #fff;
    padding: 5vh 5vw;
    /*margin-left: 5vw;*/
    text-align: center;
}

.about-section .descrizione h1 {
    text-align: center;
}

.about-section .descrizione p {
    text-align: justify;
}

/*---------------*/

#dove-mi-trovo,
#mappa {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#dove-mi-trovo {
    margin-bottom: 40px;
}

#mappa {
    height: 200px;
    object-fit: cover;
}

.dove-descrizione {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 2px #888888;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dove-descrizione,
.dove-descrizione p {
    max-width: 100%;
}

@media screen and (max-width: 1600px) {

    .about-section {
        height: auto;
        margin: 10vh 2vw 2vh 2vw;
        width: 94vw;
    }

    #persona {
        width: 45vw;
        flex: none;
        overflow: hidden;
    }

    #persona img{
        height: 100%;
    }
}

@media screen and (max-width: 800px) {
    .about-section {
        height: auto;
        display: flex;
        flex-direction: column;
        margin: 12vh 2vw 2vh 2vw;
        width: 94vw;
    }

    #persona {
        width: 100%;
        height: 50vh;
        display: flex;
        align-items: flex-start;
    }

    #persona img{
        width: 100%;
        height: auto;
    }

    .dove-descrizione {
        padding: 4vw;
    }
}