CSS to remove the Background for the Welcome and Thank you page

CSS to remove the Background for the Welcome and Thank you page.

This CSS code will eliminate the background image on both the Welcome and Thank you pages, allowing us to customize the survey's introduction and conclusion sections without the background.

For the Welcome page :

.welcome-page
{
background-image:none !important;
}

For the Thank you page :

.thankyou-page
{
background-image: none !important;
}