My navigation menu isn’t working. What happened? Please help!

The wrapper element has a higher priority than your menu (position relative) and lies over your menu element.

Two solutions:

1) Remove the negative “top” value from the .wrapper element in css

-> top: -66px;

and add less padding-top instead.

2) Add a z-index value to your navigation element, for example z-index: 10

wrapper demo