*, *::before, *::after {
    box-sizing: border-box;
}
*:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
html, body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}
body {
    font-family: roboto, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    text-align: left;
    background: #fff;
    color: #000;
    background: #fff;
}
a {
    color: #0932c7;
}
a:link, a:visited {
    text-decoration: none;
}
a:active, a:hover {
    text-decoration: underline;
}
.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.content-vert {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: inherit;
}
.content-horiz {
    flex: 1;
    display: flex;
    flex-direction: row;
    overflow: inherit;
    justify-content: center;
}
.center {
    justify-content: center;
    align-items: center;
}

#logo {
    padding-bottom: 10px;
    padding-top: 6px;
    border: none;
    padding-left: 15px;
}
#footer {
    padding-top:40px;
    padding-bottom: 50px;
    color: #888;
    text-align: center;
    font-size: 12px;
}
