I have already included this:
<style>
html, body {
padding: 0;
margin: 0;
font-family: Segoe UI;
}
</style>
And below is my code for the div I am referring to including its content:
<div class="learn-more">
<div class="container">
<div class="row">
<h1 style="color: #292f33;">SERVICES</h1>
<div class="col-md-4">
<h4>Delivery</h4><hr style="max-width: 70px;">
<p style="text-align: center; font-size: 19px; font-family: Segoe UI;">At Gadget Market we offer free delivery for purchases prized over $300. Our delivery service is up to your doorstep or wherever you would like within the country.</p>
</div>
<div class="col-md-4">
<h4>Warranty</h4><hr style="max-width: 70px;">
<p style="text-align: center; font-size: 19px; font-family: Segoe UI;">Devices from Gadget Market come with not less than a 12-month warranty. Gadget issues within this period will be catered for and a replacement provided if need be.</p>
</div>
<div class="col-md-4">
<h4>Money back Guarantee</h4><hr style="max-width: 70px;">
<p style="text-align: center; font-size: 19px; font-family: Segoe UI;">If you are not satisfied with the product you bought from Gadget market, then you can return the gadget to us within 30 days for a 90% money back guarantee.</p>
</div>
</div>
</div>
</div>
And here is the CSS:
.learn-more {
background-size: cover;
width: inherit;
margin: 0;
padding: 0;
background-color: rgba(85,172,238,0.8);
}
.learn-more .col-md-4 h4 {
font-family: Cambria;
font-size: 26px;
text-align: center;
color: #292f33;
}
.learn-more .col-md-4 p {
font-family: Segoe UI;
font-size: 19px;
text-align: center;
color: #292f33;
}
However the div .learn-more
still doesn't span the entire width. And I find this to be weird because I used the exact same code on another project and it worked!
And the link below is the image: