How can I add spacing between images on my store's homepage?

Hello im wandering if anyone can help me. Im trying to add spacing inbetween all the images/sections on my store home page. I will attach a screenshot of an example. If anyone can help that would be much appreciated.

In between the sections that says products and the one below, but i would like it done for the whole storefront.

The link to my store is www.mjcsupplies.myshopify.com Password: mjcsupplies

Hi, @MJCinvest

You can try this code

  1. Go to Online Store-> Theme->Edit code
  2. Asset-> theme.css ->paste the below code at the bottom of the file.
#main .shopify-section {
    padding: 25px 0;
}
#main > div:nth-child(1){
  padding-top:0;
  
}

Note: you can change value 25 to your choice.

Thank you so much this worked perfectly, really appreciate your help.

Regards

Martin