html * {
    font-size: 20px;
    color: #7dff4c;
    font-family: Arial, sans-serif;
}

body{
    background-image: url("914dae099a089428c484f41a42871c6900eba0aa2620c34d3a08d42eb73cd7598b89.png");
    background-repeat: no-repeat;
    background-size : 100% 100%;
    background-attachment: fixed;
}

.bas-droite{
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes zoom1 {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.5);
    }
}

.tourne{
    cursor: pointer;
}

.tourne:hover{

    animation: rotation 1s linear infinite;

}

.tourne.zoom{
    cursor: pointer;
}

.tourne.zoom:hover{
    animation: rotation 1s linear infinite;
    animation: zoom1 1s linear infinite;


}