How can I reduce footer padding on my website?

Hello @amyjones33

Inside Shopify Admin, you can go to Edit theme code, open file main.css and add this code to the bottom

.sf-footer__block {
    padding-bottom: 40px !important;
    padding-top: 40px !important;
}

The result

Hope it helps!