Fix this with Flexbox and Customize Link Styling

Assignment17B

#container
header
#leftcolumn

Style the links above so they appear white.

When hovered they should appear yellow.

main

Fix this with flexbox.

Also customize link styling in each sections (#leftcolumn, main, and footer)..

Use the a and a:hover to style the links in each section of this Web page. In order to do so, you must specify the section (id or class) to be styled. Here's an example:

main a
{
color:yellow;
}


main a:hover
{
color:white;
}

footer Yahoo | Google

Style these links to appear red.

When hovered they should appear orange.