align to center
A quick way to center content horizontally and vertically using flex.
<style>
.container{
display: flex;
align-items: center;
justify-content: center;
}
</style>
copy