body {
    margin: 0;
}

h1.name {
    margin: 20px 0 0 0;
}

.left-info {
    margin: 5px 0 0 0;
    padding: 0px;
}

a.green-a {
    color: #5a9053;
}

.bulletpt-ul {
    list-style-type: circle;
}

.edu-div {
    display: flex;
    justify-content: space-between;
}

.right-span {
    text-align: right;
}

.grey-p  {
    color: #a1a0a0;
}

.container {
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
}

nav {
    border-top: 1.5px solid #dedddd;
}

ul.navigation {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    align-self: center;
    background-color: #f5f5f5;
    border-top: 3px solid #eaa10e;
    border-bottom: 1.5px solid #dedddd;
}

nav > ul > li {
    text-align: center;
    flex: 0 0 10%;
}

li.current_item {
    color: #eaa10e;
    font-weight: bold;
    padding: 10px 0;
}

nav > ul > li > a {
    text-decoration: none;
    color: #4a4a4a;
    display: block;
    padding: 10px 0;
}

nav > ul > li > a:hover {
    background-color: #e7e7e7;
}

img.profile {
    border-radius: 50%;
    max-width: 250px;
}

.content-container {
    display: flex;
    flex-direction: row;
    margin-left: 10%;
    margin-right: 10%;
    flex: 1;
    padding-top: 20px;
    padding-bottom: 20px;
}

.left-content {
    flex: 1;
    text-align: center;
    border-right: 1px solid #dedddd;
    padding-right: 40px;
}

.right-content {
    flex: 3;
    padding-left: 40px;
    overflow-wrap: break-word;
}

footer {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #dedddd;
    background: rgb(232,232,232);
    background: linear-gradient(0deg, rgba(232,232,232,1) 0%, rgba(255,255,255,1) 100%);
}

progress {
    border-radius: 7px; 
    width: 300px;
    height: 22px;
    box-shadow: 1px 1px 4px rgba( 0, 0, 0, 0.2 );
}
progress::-webkit-progress-bar {
    background-color: rgb(255, 255, 255);
    border-radius: 7px;
}
progress::-webkit-progress-value {
    background-color: #5a9053;
    border-radius: 7px;
}

@media only screen and (max-width: 800px) {
    img.profile {
        max-width: 200px;
    }

    .content-container {
        flex-direction: column;
    }

    .left-content {
        border-right: none;
        border-bottom: 1px solid #dedddd;
        margin: 0;
        padding: 0;
        padding-bottom: 2em;
    }

    nav > ul > li {
        font-size: 0.9em;
        flex: 1 0 10%;
    }

    ul.navigation {
        padding: 0 10%;
    }

    h2 {
        text-align: center;
    }

    .right-content {
        margin: 0;
        padding: 0;
    }

}