I'm struggling to understand why there are two boxes visible in my navigation bar.
For example, when looking at the Home link, I notice that there are actually two boxes; one containing the text "Home" and another one that extends outwards to the right side of the screen.
I would like to adjust the size of the protruding box so that it aligns with the text box for the links labeled 'Home, Projects, About Me, and Resume'. This is mainly for aesthetic reasons and also because when hovering on the right side of the Projects link, the menu unexpectedly appears.
Check out this link for more details
* {
border: 1px solid rgba(0, 0, 0, 0.3);
}
header {
position: fixed;
width: 100%;
background: #4168a8;
}
.container {
width: 90%;
height: 75px;
margin: 0 auto;
}
...remaining code...
</body>
</html>