so the comment where it says:
<!--I want every thing below this line to be white-->
I believe I solved that issue.
so your first main tag all the way at the top that is nesting everything:
the one that says: <main id="main">
didnt seem to have a closing </main>
tag after youve finished your unordered list.
when i applied the </main>
after the </ul>
from the last section of your unorderd list. everything after the last <li>
you had could now be turned white.
example of what I did below:
<li>
<strong>2016</strong> Passed away in Tucson, Arizona (aged 92)
</li>
</ul>
</main>
everything after this was able to be turned white using your <main2 id="main2">
In other words you should be able to turn everything below that last list to white once you apply your #main2 from your CSS to your in HTML.
I don’t know if there could have been a easier way to do this but that is the best I could do at the moment from what i’ve learned. That seemed to actually make all that turn white below the “Passed away in Tucson, Arizona (aged 92)”
Hope that helps. Im stoked to start doing the tribute page lessons once I finish everything up in html/css learnings.