Hi @sarshas356
Great work on the letterhead!
One small correction: As by the task description the gradient needs to be on top of the images. For this it needs to be the first background image.
A general remark about multiple backgrounds
In my opinion it’s clearer to use the background
short-hand when dealing with multiple backgrounds. This way the properties of each background are nicely grouped:
background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0) 20%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.2)),
url(top-image.png) no-repeat left top,
url(bottom-image.png) no-repeat left bottom;
Of course there’s nothing wrong with your approach. It’s just an alternative.
Regarding the project name on Glitch
Since the project name is also used as a subdomain of glitch.me (https://local-classy-papaya.glitch.me) another learner has probably already used this name/domain when solving this task.
I hope that helps.
Michael