html {
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
    background-color: #101010;
}

div.outer-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

div.logo-container {
    height: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

div.logo-container > img {
    width: 60%;
    max-width: 1095px;
}

div.label-container {
    height: 100px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

div.label-container > span.sub-label {
    display: inline-block;
    text-align: end;
    width: 60%;
    max-width: 1095px;

    font-size: 3em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    color: white;
}

div.footer {
    text-align: center;
    margin-top: auto;
    height: 50px;
    line-height: 30px;
}

div.footer > span.copyright {
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1em;
}