@font-face {
    font-family: 'IM Fell English';
    src: url('IMFellEnglish-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Italic IM Fell English';
    src: url('IMFellEnglish-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body,
html {
margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;   /* horizontal */
    align-items: center;       /* vertical */

    font-size: 36pt;
    font-family: 'IM Fell English';
}

span.i { font-family: 'Italic IM Fell English' }
span.small { font-size: 24pt; }


.container {
    display: flex;
    flex-direction: column;   /* THIS is the key */
    align-items: center;
    text-align: center;
}

.spacer {
    height: 2em;
}

