body {
    margin: 0px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}
header {
    padding: 16px 60px;
    border-bottom: 1px solid #dddddd;
    display: flex;
    justify-content: space-between;
}
header img {
    max-height: 37px;
}
header div {
    font-size: 14px;
    line-height: 37px;
}
main {
    max-width: 640px;
    margin: 32px auto;
    padding: 16px;
    line-height: 1.6;
    font-size: 15px;
    font-weight: 400;
}
footer {
    text-align: center;
    margin: 32px 0px;
    font-size: 13px;
}
h1, h2, h3, h4, h5 {
    font-weight: 400;
}
a {
    color: rgba(37, 72, 140, 1);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.crumbs {
    font-size: 13px;
    font-weight: 300;
}

@media (max-width: 480px) {
    header {
        justify-content: center;
    }
    header div {
        display: none;
    }
}
