HOVER EFFECT

HOVER EFFECT

<style>

#button{

transition: all 1s ease;

}

#button:hover{

transform: translate(0px, 7px);

transition: all 0.3s ease;

box-shadow: 0px 0px black;

}

</style>