How to make the web text bold

How do I make all of the text in the site to be bold?

Please try this CSS snippet

*{
	font-weight: 700 !important;
}

I would like the font weight to be 500 but whenever I do that, the icons for bedrooms, bathrooms and pets disappear. How can I resolve that?

Please try this CSS snippet

*:not(.fas, .fa){
	font-weight: 500 !important;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.