Como centralizar verticalmente com o Angular Flex Layout?

Criei um componente de login simples e gostaria de centralizar verticalmente, mas não tenho certeza de como fazer isso usando a biblioteca Angular Flex Layout.

app.component.html

<router-outlet></router-outlet>

login.component.html

<div fxLayout fxLayoutAlign="center center">
    <mat-card fxFlex="30%">
        <mat-card-title>Login</mat-card-title>

        <mat-card-content fxLayout="column">
            <mat-form-field>
                <input matInput placeholder="Username">
            </mat-form-field>
            <mat-form-field>
                <input matInput placeholder="Password">
            </mat-form-field>
        </mat-card-content>

        <button mat-raised-button color="accent">Login</button>
    </mat-card>
</div>

styles.scss

body{
    margin: 0;
    background-color: #eff2f5;
}

captura de tela:

questionAnswers(3)

yourAnswerToTheQuestion