I have a title and an online form within a div I need these to be aligned vertically and horizontally with bootstrap 4. I used the classes align-items-center and justify-content center works but the title of the form is very separate, I want it to be immediately below but in the center.
This is my code
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet"/>
<div class="container-fluid ">
<div class="row d-flex align-items-center justify-content-center fondo">
<h3 class="text-center mb-">Suscríbase Aquí </h3>
<form class="form-inline">
<div class="form-group my-2">
<label for="" class="mx-2">Nombre</label>
<input type="text" class="form-control" placeholder="Ingresa tú nombre">
</div>
<div class="form-group my-2">
<label for="" class="mx-2">Email</label>
<input type="email" class="form-control" placeholder="Ingresa tú email">
</div>
<div class="form-group my-2">
<button class="btn btn-primary">Enviar</button>
</div>
</form>
</div>
</div>