html, body {
    height: 100%;
}

.content h1, h2 {
    background-color: #0099cc;
    color: white;
    margin: -20px -20px 50px -20px;
    line-height: 50px;
    text-align: center;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.26), 0 4px 5px 0 rgba(0, 0, 0, 0.12), 0 1px 10px 0 rgba(0, 0, 0, 0.08);
}

h4 {
    text-align: center;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    display: flex;
    background: url(lines-bottom-right.svg) right bottom;
    background-repeat: no-repeat;
}
body.no-background {
    background: none;
}

.content {
    flex: 1 1 auto;
    padding: 15px;
    overflow-y: auto;
}

/* Navigation Header */
.nav-menu {
    width: 250px;
    flex-basis: 250px;
    flex-shrink: 0;
    height: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: auto;
}

li.nav-menu-item-logo h1 {
    font-size: 1.4em;
    display: block;
    padding: 0 16px;
    text-decoration: none;
    text-align: center;
    background-color: white;
    color: #0099cc;
}

li.nav-menu-item a {
    background-color: white;
    color: black;
    display: block;
    padding: 14px 16px; 
    text-decoration: none;
    transition-duration: 0.15s;
}

/* Change the link color to slightly grey on hover */
li.nav-menu-item a:hover {
    background-color: #f9f9f9;
}

li.active a {
    background-color: #f4f4f4;
    color: #0099cc;
}
