body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}
header {
    background: #333;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #77aaff 3px solid;
}
header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}
header ul {
    padding: 0;
    list-style: none;
}
header li {
    float: left;
    display: inline;
    padding: 0 20px 0 20px;
}
header #branding {
    float: left;
}
header #branding h1 {
    margin: 0;
}
header #branding h2 {
    margin: 0;
}
header nav {
    float: right;
    margin-top: 10px;
}
.profile, .skills, .projects, .education {
    background: #fff;
    padding: 10px;
    margin: 10px 0;
}
.profile {
    display: flex;
    justify-content: space-between;
}
.profile .left, .profile .right {
    float: left;
    padding: 20px;
}
.profile .left {
    width: 70%;
}
.profile .right {
    width: 30%;
}

.profile h2, .skills h2, .projects h2, .education h2 {
    border-bottom: #77aaff 2px solid;
    padding-bottom: 10px;
}
.skills ul, .projects-wrap, .education-wrap {
    list-style: none;
    padding: 0;
}
.skills li, .projects-item, .education-item {
    background: #f5f6f7;
    margin: 5px 0;
    padding: 10px;
    border: #ccc 1px solid;
}
.project-details {
    float: left;
    width: 70%;
}
.project-extend {
    float: right;
    width: 30%;
}
.project-logo {
    max-width: 128px;
    max-height: 64px;
    display: block;
}


.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
