body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #181A1B;
}

/* navbar */
header {
    font-size: 14px;
    background: #1b2033;
    display: flex;
    align-items: center;
}
header ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    flex-grow: 1;
}

header li {
    float: left;
}

header li:last-child {
    float: right;
}

header li a, #mobile-nav-overlay li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

header li a:hover {
    background: #6d6d6d86;
}

.logo {
    margin-left: 30px;
    height: 30px;
}

header .fa-bars {
    display: none;
}

#mobile-nav-overlay {
    display: none;
}

/* content */
.content {
    float: left;
    margin-left: 30px;
    margin-right: 30px;
}

.content h1, h2, h3, h4 {
    color: rgb(201, 196, 189);
    line-height: 80px;
}

.content h1 {
    line-height: 80px;
}

.content h2, h3, h4 {
    line-height: 60px;
}

.content p {
    color:rgb(200, 196, 189);
}

.content pre {
    color: #3f7e4d;
}