The above css allowed me to change the size of the font, but does not affect the font-family.
Secondary question: I would like the text color of the navigation bar to change when I hover over it.
a:hover {
color: red;
}
This css will make my other links function as desired, but not the navigation bar. What would the correct css be to have the navigation bar function as described?