a{
    position: relative;
    top:0;
    transition: all;
    transition-duration: 0.6s;
}
a:hover{
    color:rgb(152, 0, 172);
    transform: scale(1.05);
    display: inline-block;
    top:-2px;
    position: relative;
    transition: all;
    transition-duration: 0.3s;
    text-decoration: underline;

}