Text on image is too big in mobile version

Hi,

I like the size of my text on the desktop version but on mobile it is too big. I would like the font to be smaller & fit across the screen (without wrapping to next line).

https://kindred-haus.com/

PW: KHaus2023

Thank you!

Kaity

Add this code in Custom CSS of that section to solve this issue.

@media (max-width: 749px) {
h2 { 
font-size: 28px !important;
padding-bottom: 12px !important;
}
}

Amazing, this worked! Thank you!

Very welcome!