How to adjust font size of an Text in an image text section?

Hello guys, as you can see here, I have created an image text section, and I want those 2 texts (should be headlines for the following text) to be the same fonz size. So how can I adjust the font size of this text?

Hello @NikosBat ,

Wrap both the text with same element like h2 or h3

If still not same then you can assign css to them e.g.
h2, h3{

font-size: 18px;

}

Regards
Guleria

Thank you Guelria, that has solved my problem! Do you also know can I reduce the space here?

Try to use

line-height: 1;

or margin-bottom: 0;

or padding-bottom:0;

At the CSS Code? How do I write that? Could you please help me with that please?

h2, h3{

line-height: 1;

margin-bottom: 0;

padding-bottom:0;

}