how to center element in bulma

To center an element in Bulma, you can use the is-centered class. Apply this class to the parent container of the element you want to center. Here's an example:

<div class="is-centered">
  <!-- Element to be centered -->
</div>

By adding the is-centered class to the parent container, the element inside it will be horizontally centered.