Tribute Page-FCC-review

please can I have feedback on my tribute page.
How can I make it better?
https://codepen.io/tahmeenn/pen/wmrpJN

The page itself looks good, although your image extends beyond the browser window and is not responsive. This is easy to fix:

img {
  width:100%;
  display:block;
  margin:auto;
}

You have a lot of inline styles in your HTML. You should add all of your styles to your CSS file instead of using inline styles.