html, body {
    height: 100%;
    margin: 0;
}

.top-menu-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: space-between;
    position: fixed;
    width:100%;
    background: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12), 0 3px 1px -2px rgba(0, 0, 0, .2);
    padding-top: 5px;
    min-height: 64px;
    z-index: 2;

}
.top-menu-container:before {
     width: 100%;
     height: 5px;
     display: block;
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     background: #00008f;
}

.brand-logo {
    background-image: url('./logo.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 162px;
    height: 40px;
    margin: 0 20px;
}

.content-container {
    padding: 64px 15rem 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    color: #535353;
}
