:hover CSS Animations

Taking an example of moving an arrow on hover like buttons within this specific site.


<style>
.arrow{transition: transform .5s ease-out;}

.button:hover .arrow {transform: translateX(.25rem);}
</style>