Hi @handmadehome,
This can be fixed with some custom CSS. Under Customize > Additional CSS, you can add the following code:
?
/* remove the content bottom space on home page */
.home.page-template-template-homepage-php .site-main,
.home.page-template-template-homepage-php .content-area,
.home.page-template-template-homepage .is-layout-flex.wp-container-10.wp-block-columns,
.home.page-template-template-homepage .type-page {
padding-bottom: 0px !important;
margin-bottom: 0px !important;
}
If you’d like to learn more about CSS, I highly recommend using the free tutorials at w3schools. Here, you can find the basics of selectors (how to target the right element on the page), and properties (how to change the element on the page).