How to change font size of the main title on my beyblade blog page on my website

Does anyone know how I can change the font size of the text in my H1 tag on the main blog page of my website? The text where it says “welcome to our beyblade blog”. Here is a link to the website so you can see what I mean: https://beystation.com/blogs/beyblade-blog

I hate how the text for the H1 tag is way smaller the than text of the blog post titles below it (where it says “where to buy takara tomy beyblades?” and “what is the most powerful beyblade?”).

See how those 2 blog post titles (the blue text ones) are way bigger than the actual main page title (the H1 tag) ??

How can I increase the font size of the main blog title text???

Thank you for any help!

Hi @Beyblade-Gamer
You can try follow this path:
Themes => edit code => asset => theme.scss.liquid
and add this code to bottom of the file theme.scss.liquid

.template-blog .section-header__title {
font-size: 2rem;
}

Change the number to font size you like, also you can change 2rem to 30px to use the PX unit

Awesome! Thank you so much for the help.