How can I make specific text on my website bolder?

Hello,

I need help with making the text “Get Started” and “Care” bold. Or, increase the font weight.

Here is my website link: https://wowberrybites.myshopify.com/

Thanks for your help in advance

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.min.css and paste this at the bottom of the file:
p.h2.footer__title {
font-weight: bold;
}
p.h2.footer__title.footer__title--newsletter {
    font-weight: 100 !important;
}

p.h2.footer__title {
    font-weight: 600 !important;
}

@winnado11
Add this code in the theme.min.css

@ZestardTech Thanks so much!

@winnado11
‘Join the conversation, Moms and Dads’

But it make this too bold.
Use the above code to remove that boldness.

Hello,

Add this code at the end of theme.min.css file in assets.

footer p.h2.footer__title {
    font-size: 25px;
    font-weight: bold;
}

Thank you.

Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance.