body{
    box-sizing:border-box;
    margin:0;
    padding:0;
}


div{
    display:inline-block;
    background-color:#DD5735;
    color:#fff;
    width:200px;
    height:50px;
    
}
.rubrique div{
    transition:color .2s,background-color 1s ,transform .5s;

}
.rubrique div:hover{
     color: #333;
     background-color: #fc3;
     transform:scale(1.5);
}