/* Color Palette
# - #BAC1B8
# - #58A4B0
# - #0C7C59
# - #2B303A
*/

html {
    box-sizing: border-box;
}

*, *:before, *:after{
    box-sizing: inherit;
}

body {
    background: #BAC1B8;
    width: 70%;
    margin: 0 auto;
}

header, footer {   
    font-family: "Inter", serif; 
    background: #58A4B0;
}

header {
    display: flex;
}

footer {
    text-align: center;
}

main {
    background-color: #2b303a
}

h1, h2, h3, h4, h5, h6, p, li{
    color: #f9fef8;
}

h1 {
    font-size: 2.4em;
    margin: 0;
}

h2 {
    font-size: 1.8em;
    margin-top: 0;
}

a {
    color: #99FFB8;
}

#work {
    font-family: "Roboto Slab", serif;
    display: block;
    margin-bottom: 0px;
    background-color: #2b303a;
}

#education {
    font-family: "Roboto Slab", serif;
    display: block;
    margin-top: 0px;
    background-color: #0c7c59;
}

.profile-img {
    border-radius: 50%;
    /* width: 300px;
    float: left;
    margin-right: 30px; */
}

.content-wrap {
    max-width: 950 px;
    margin: 0 auto;
    padding: 50px;
    margin-top: 0px;
    overflow: hidden;
}

.contact-info a{
    padding: 10px;
    display: inline-block;
}

.column-narrow {
    width: 30%;
    float: left;
    padding-right: 3%;
    min-height: 175px;
}

.column-wide {
    width: 70%;
    float: left;
    min-height: 225px;
}