* { box-sizing: border-box; }
html {
    font-family: "Source Sans Pro";
    background: #ccc;
    min-height: 100vh;
}

body {
    min-height: 100vh;
    max-width: 50em;
    margin: 0 auto;
    padding: 1em;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1 {
    font-weight: 300;
    font-size: 3em;
    border-bottom: 1px solid #999;
    margin: 1em 0 .5em 0;
    padding: 0 1em;
}

p {
    line-height: 1.8em;
    text-align: justify;
    margin: .2em 5em;
    letter-spacing: .04em;
}

h1 small {
    font-size: .4em;
    margin-left: 1em;
    color: #666;
}

footer.branding {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.lgce-logo {
    font-size: 2.5em;
    color: #2e317a;
    display: inline-block;
    text-shadow: 0 0 1em rgba(0, 0, 0, .5);
    letter-spacing: .05em;
}
.lgce-logo::before, .lgce-logo::after {
    color: #666;
    font-weight: 200;
}
.lgce-logo::before { content: '<'; }
.lgce-logo::after { content: '/>'; }

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');
