Center Multicolumn Text Title on Desktop as well as mobile

Hello,

My mulicolumn title is centering on mobile with my CSS but not desktop. Any idea why? Thank you. Screenshot attached.

URL: www.samiyaskincare.com.au

Hi @ellacoker
Please replace text-align: center with

text-align: center;
 align-items: center;
 justify-content: center;

Please like and accept solution if it works for you

Thanks!

Hi @ellacoker , please use this instead:

.multicolumn__title {
    text-align: center;
    justify-content: center;
    align-items: center;
}