I utilized the bootstrap grid to adjust the size of the div, however, I would like the div to be slightly narrower. Below is my code:
.single-box {
background: black
}
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="bad8d5d5cec9cec8dbcafa8e948f9489">[email protected]</a>/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<div class="col-md-3 ml-5">
<div class="single-box">
<p class="ml-5">1 марта, 18:00</p>
<h4 class="ml-5">Hi</h4>
<p class="ml-5">My name is..</p>
<button type="button" class="btn mx-auto btn-light gotham">Write to me</button>
</div>
</div>
Is it possible to decrease the width using bootstrap tools? Or do I have to forgo bootstrap grid and manually set the parameters?