2
I got the following shit on mine HTML:
<div class="image">
    <div class="container center-align">
        <h1 class="grey-text text-lighten-5">Análise de Sistemas</h1>
        <span><b class="grey-text text-lighten-5">Tutoriais, Dicas, Tecnologia</b></span>
    </div>
</div>
The CSS class image:
.image {
    background-image: url("../images/vingadores.jpg");
    min-height: 400px;
    overflow: hidden;
    align-content: center;
    margin-bottom: 15px;
}
As image below the <div class="container center-align"> is not centered, I would like it to be in the middle of the image that is the div <div class="image">.

Does anyone have any idea how I can do that?
I’ve looked here at Stack and Q&A about centering
divdidn’t help me.
OBS: I’m using the Framework Materialize.
Very good!! Thank you!!
– MeuChapeu