Greetings fellow campers:
I have completed my very first web page (Tribute Page: “Stan Lee”).
Please let me know what you think!
Any suggestions, or opinions, on how to improve it would be greatly appreciated.
Thanks in advance 
Greetings fellow campers:
I have completed my very first web page (Tribute Page: “Stan Lee”).
Please let me know what you think!
Any suggestions, or opinions, on how to improve it would be greatly appreciated.
Thanks in advance 
Design wise I think it looks great! Great choice with the background image. Good responsiveness as well on mobile.
A few thoughts on the HTML and CSS:
Regarding the use of the <h2> tag for your “Stan Lee” subtitle/tagline, I suggest you consider this article on how to markup subtitles and taglines in HTML. This was an issue I ran into when developing my tribute page.
Try using ems for font-size. ems will generally help your text size look better on different devices. Using px for font-size tends to lead to overly large text on smaller screens. In your case, it’s actually not too bad on my mobile.
Watch out for conflicting rules like this:
a,
a:hover {
color: red;
}
a:hover {
color: #000066;
text-decoration: underline;
}
Since CSS cascades, the last rule applied wins, so the first a:hover rule can be safely deleted.
But really some of my points above borders on being pedantic, your tribute page is well done, good job!