Im stuck don't what exactly is needed

Tell us what’s happening:

The last two challenges are giving me a hard time someone give a hand

Your code so far

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 9; SM-A207F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Mobile Safari/537.36.

Challenge: Build a Tribute Page

Link to the challenge:

what kind of help do you need?
what your code?
what do the tests say?

The test says the img element should responsive resize relative to the width of the parent element without exceeding its original size

try to use max-width:100%, width:100% on image, it should be responsive, 100% width and never exceed parent size even if image is 100%.

my code so far

img{
  max-width:100%;
  width:100%;
}

but its not passing

below the failing test there is a block, the first line usually tells why the test is not passing, try looking there

if you want more help you will need to share your code

i passed the test thank you all

*{
box-sizing: border-box;
}