
@media screen and (min-width: 1500px) { /*Modifications quand l'écran est au-dessus de 1500px*/

    #graphe {
    float: right;
    transition: width 1.5s,  height 1.5s;
    width: 20%;
    height: 20%;
    margin:15px 0px 15px 25px;
    }

    #graphe:hover {
    transition: width 1.5s,  height 1.5s;
    width: 60%;
    height: 60%;
    float: right;
    }

    
}

@media screen and (max-width: 1500px) { /*Modifications quand l'écran est en-dessous de 1500px*/

    #graphe{
        float: left;
         width: 60%;
        height: 60%;
        margin:15px 25px 15px 25px;
    }
    
}

