How to center custom l line on my cart page

Hi everyone

New to using shopify, not a techie at all.

I have added this liquid code line on my cart to show progress on getting free shipping:

0 AED 150 AED


{% if cart.items.size == 0 %}Add items to your cart to receive free shipping.{% endif %}{% if cart.items.size != 0 %}{% if cart.total_price >= 15000 %} You’ve got free shipping :ok_hand: {% elsif cart.total_price < 15000 %}You’re only {{ 15000 | minus: cart.total_price | money }} away from free shipping.{% endif %}{% endif %}

How can I center this line on my screen?

@novurituals , Hope you are doing well.

Could you please share your store URL? Also, share the screenshot where you would like to center the text.

Hi, sharing the link and image below. thanks

https://novurituals.com/

@novurituals , Please add the below line of CSS in your style.

section#shopify-section-template--21828227432755__custom_liquid_RHYCbU {
    text-align:center;
}

Im getting this

Try by adding below CSS:

.section-template--21828227432755__custom_liquid_RHYCbU-padding {
    text-align:center;
}