How to make an image full width and hight in an image text section?

Hello guys, as you can see in the image below, i have created a image text section in my shop. I want the image to be full width and hight of the section, how am I able to do this?

Hi @NikosBat ,

Thank you for reaching out to the Shopify community. I’d be glad to assist you. Could you kindly share your store URL and
password (if it’s password-protected) so I can review it and provide you with an update?

Hi @NikosBat ,

Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

.section-template--24443853144396__image_with_text_bteEtd-padding.gradient.color-scheme-1 img {
    display: block;
    max-width: 125% !important;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 115% !important;
}