I am new to web development and currently working on creating my own portfolio website. I have designed a section at the bottom of my page that features an "About Me" box, with the remaining space dedicated to footer links and copyright information.
https://i.sstatic.net/LgX8N.png
The current design looks like this. I am looking to add a background that starts from the middle of the about section and extends to the bottom of the page without any margins.
<section id="about">
<div class="abt-content">
<h2 class="abt-title">About Me
<i class="fa-regular fa-lightbulb"></i>
</h2>
<p class="abt-desc"></p>
</div>
</section>
#about {
margin-left: 70px;
margin-right: 5%;
margin-bottom: 20%;
padding: 80px 0px;
}
.abt-content {
background-color: #232946;
padding: 50px 0px;
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
border-radius: 12px;
}
.abt-title {
color: #fffffe;
text-align: center;
margin-bottom: 10px;
font-family: montserrat, Verdana, Geneva, Tahoma, sans-serif;
font-size: 35px;
font-weight: 700;
}[enter image description here](https://i.sstatic.net/dUTIz.png)