/* questo dile contiene il css dell' animazione 1 che è in home */

#animazione1 {
    margin-bottom: 3em;
    position: absolute; /*importante per animazione*/
    /*border: 4px solid black;
    width: 10em; i set it in javascript*/
    height: 200px;
    width: 330px;
    transform: scaleX(1);
}

#ani_placeholder{
    height: 220px;
    width: 1em;
    background-color: pink;
    visibility: hidden;
}

@media only screen and (max-width:700px) { /* per telefoni */
    #animazione1 {
        height: 110px;
        width: 180px;
    }
    #ani_placeholder{
        height: 110px;
    }
}