<div class="align-vertically">
I am vertically centered!
</div>
/*Css */
.align-vertically {
background: #13b5ea;
color: #fff;
display: flex;
align-items: center;
height: 200px;
}
align-items: center; /* Vertical */
justify-content: center; /* Horizontal */