SASS/SCSS Starter Kit
The @mixin centered-container will align the content in the container to the center of the container.
Shortcut: scss.mixin.centered
@mixin centered-container {
display: flex;
justify-content: center;
align-items:center;
}