Is there a way to make buttons increase in size when hovered over without causing the other buttons to shift to the side? I've tried using the following code to achieve this but it's not working as expected:
<style>
button{transition-duration: 0.7s;} button:hover{font-size:20px;}
</style>