Stuck on my tribute page

Hi, I am trying to get passed with my tribute page but I am getting 7/10, and I can’t find what is the problem. could you help me to find it out please?

https://codepen.io/sssssunny/pen/mdeLjGp

Hey there! Welcome to FCC!
On your image element, the id is incorrect. It should be image instead of img:

<img id="image" src="https://i.ytimg.com/vi/SEUXfv87Wpk/maxresdefault.jpg">

Also, in your CSS file, change your #img styling to #image:

#image {
  max-width: 100%;
  height: auto;
  width: auto;
  display: block;
  margin: auto;
  padding: auto;
}

Welcome to the forus @sssssunny. When test fail you can click on the red button to see which tests failed and why. The failing messages should be enough to help you to make the changes which will make the tests pass.

Hey thank you for replying, I did fix it and got passed! yay
will be more careful! thank you!

oh I didn’t know that is how it works, would be better next project! Thank you for letting me know!

nice work! also where did you submit to clear the tests? I copied my codepen link to submit it as a solution, but i have not seen that i have passed their tests.

edit: i found elsewhere i had to embed the script to achieve such. noob status declared