I'm trying to align center vertically each element of a div but I can't do it. I have tried with vertical align but it isn't working. What is going wrong?
I want each element centered like this
.banner {
display: flex;
justify-content: center;
align-items: center;
}
<section class="banner" id="banner">
<div class="banner-text">
<h2>Hola, yo soy <span>Diego Donoso</span>.</h2>
<h3>Técnico Analista Programador.</h3>
<a href="#about" class="btn">Sobre Mí</a>
</div>
</section>