I have managed to create this double border that I need, but do not know how to reduce its length to 80VW without the entire header reducing as well. Is anybody able to help me please?
header {
position: relative;
border-bottom-style: solid;
border-bottom-color: #339966;
border-bottom-width: 2px;
padding-bottom: 2em;
}
header:before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 5px;
border-bottom: 5px solid #339966;
}
<header>
<h1>THE CODE REVIEW</h1>
<h2>Signup for our newsletter</h2>
<p>Get the latest news on how your code is doing right in your inbox</p>
</header>