How to customize the color and alignment of the debut featured collection?

For this website, I’ve changed the headline color to white and centered the items I need for the featured collection on the homepage (the light blue one) but I cannot get the text to change to white for the product title and price. I spent hours trying the codes listed in here and none of them have worked. Any help?

https://jpz8aw88yjszywap-7164526682.shopifypreview.com

@BreCreative

  1. Go to your store Assets > theme.scss and paste the lines at the bottom of the file
.index-section .h4.grid-view-item__title, .index-section .price__regular {
    color: white;
}

If helpful then please Like and Accept Solution. Want to modify or custom changes on store Hire me. Feel free to contact me on mail | Shopify Design Changes | Custom Modifications In to Shopify Theme

@BreCreative

can you try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss.liquid->paste below code at the bottom of the file.
.template-index .product-card .grid-view-item__title {
    color: #fff;
}

.template-index .product-card .price .price__regular {
    color: #fff;
}

.template-index .grid--view-items + hr + div a {
    background: #fff;
    color: #042294;
}

Thank you!