* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Proxima Nova', 'Myriad Pro', Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #666;
    background: #323232;
    border-top: 3px solid #252525;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

#header {
    background: #fff;
    padding: 25px 0;
}

#header h1 {
    font-size: 30px;
    color: #252525;
    font-weight: bold;
    line-height: 1.1;
}

#header h1 a {
    color: #252525;
    text-decoration: none;
}

nav {
    background: #fff;
    border-top: 1px solid #dedede;
    border-bottom: 3px solid #e8e8e8;
}

nav ul {
    list-style: none;
    display: flex;
}

nav a {
    display: block;
    padding: 15px 10px 13px;
    margin-right: 15px;
    color: #5e5e5e;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 2px solid transparent;
}

nav a:hover, nav a.active {
    color: #2e2e2e;
    border-bottom-color: #4c4c4c;
}

#content {
    background: #fff;
    min-height: 400px;
    padding: 50px 0;
}

#content p {
    line-height: 1.5;
    padding: 0.5em 0;
}

#content a {
    color: #000;
    text-decoration: none;
}

#content a:hover {
    color: #888;
}

#content h2 {
    font-size: 1.7em;
    font-weight: normal;
    color: #4a4a4a;
    padding: 0.3em 0;
}

#content h3 {
    font-size: 1.2em;
    color: #4a4a4a;
    padding: 0.5em 0 0.2em;
}

#content strong {
    color: #4a4a4a;
}

.projects ul {
    list-style: none;
    padding: 0.5em 0;
}

.projects li {
    padding: 0.4em 0;
}

.projects li a {
    font-size: 1.1em;
}

.project-desc {
    color: #999;
    font-size: 0.9em;
    margin-left: 0.5em;
}

.cv-section {
    margin-bottom: 1.5em;
}
