CSS to have a different background image for the Welcome page

CSS to have a different background image for the Welcome page.

The following CSS code will allow you to customize the background image specifically for the welcome page, providing a distinct visual separation between the welcome page and the subsequent questions.

.surveysparrow-survey-container--classic-form > .ss-fp-section {
background: url("https://images.unsplash.com/photo-1585468274952-66591eb14165?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3132&q=80");
background-size: cover;
}

Please make sure to use the correct URL of the image when inserting it on the welcome page in the specified section of the code: background: url.

Upon applying the CSS code, the welcome page will display a distinct background, while the remaining pages will retain the same background as before.