Flex your flexbox skills and create a responsive nav bar in the styles.css file.
Some hints:
- the nav element will have the following properties: display: flex-direction: justify-content:
(you'll need to figure out what values to use)
- Create a media query with a max size of 920px. The nav element at the break point will have the following property and value:
justify-content: space-around
- Create a media query with a max size of 600px. The nav element at this break point will have the following property and value:
flex-direction: column
- Have fun and be creative with the design of the nav bar!