<div class="header">
<div class="up"><h1>Текст сверху</h1></div>
<div class="down"><h3>Текст снизу</h3></div>
</div>
.header{
display: flex;
flex-direction: column;
align-items: center;
border: 1px solid black;
padding: 10px;
height: 300px;
}
.up, .down{
border: 1px solid black;
padding: 10px;
}