Style to affect all buttons

Hey guys, I’m using this style code to affect all the buttons on the page, however it’s only affecting the “See more” button and not the individual tag buttons

Any idea why?

Here’s the code

<style>
  button {
    background-color: black !important;
    color: pink !important;
    transition: all 0.5s !important;
  }
  button:hover {
    background-color: pink !important;
    color: black !important;
    transform: scale(1.2) !important;
  }
</style>

Hey JamesT,

Can you share a link to take a look and inspect your page, to see what’s going on