I'm struggling with centering text both horizontally and vertically in a Bootstrap 4 carousel.
I've set up the bootply with a carousel, but the text is stuck in the upper left corner instead of being centered on the screen.
<div class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<h1>Text 1</h1>
</div>
<div class="carousel-item">
<h1>Text 2</h1>
</div>
<div class="carousel-item">
<h1>Text 3</h1>
</div>´
</div>
</div>