Вы должны использовать border: 2px solid #626262;
для раздела и #outer
div как
#outer {
margin: auto;
padding: 10px;
text-align: center;
border: 2px solid #626262;
}
И установить первое и третье поля для более близкого
section:first-child, section:nth-child(3){
margin: -6px;
}
code {
display: block;
text-align: center;
}
section {
display: inline-block;
text-align-last:center;
border: 2px solid #626262;
width: 35%;
margin: 0px;
padding: 15px 0 15px 15px;
}
section:first-child, section:nth-child(3){
margin: -6px;
}
h1 {
color: #626262;
display: block;
text-align: center;
}
h2 {
color: #626262;
display: block;
}
#outer {
margin: auto;
padding: 10px;
text-align: center;
border: 2px solid #626262;
}
<div id = "outer">
<section>
<h2>ELEMENT 1</h2>
</section>
<section>
<h2>ELEMENT 2</h2>
</section>
<section>
<h2>ELEMENT 3</h2>
</section>
<section>
<h2>ELEMENT 4</h2>
</section>
</div>