How do I make the border of my header have the same color as my header? When I ran my code, the border of the header has the HTML background color. How do I make it so that the background color of the header fills the edge of the page?
header {
background-color: #3AAFA9;
}
<header>
<h1 id="home">Hi</h1>
<nav>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
</nav>
</header>