/* Color Palette
# - Muted Teal #89B6A5
# - Vintage Grape #4C3B4D
# - Frozen Water #C9EDDC
# - Muted Teal #82968C (Name given by palette)
*/


.playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
/* Global styles 
------------------------------------*/
html{
    box-sizing: border-box;
}
*, *:before, *:after{
    box-sizing: inherit;
}
body {
    background: #303633;
    font-family: "Playfair Display", serif;
    font-weight: 500; /*Playfair Display supports 400-900 weight*/
    margin: 0;

}
h1, h2, h3{
    font-family: "Instrument Serif", serif; /*Instrument only has font-weight 400*/
}
h1{
    font-size: 45px;
    
}
h2{
    font-size: 30px;
    margin-top: 0;
}


/* Header 
------------------------------------*/
header {
    background: #C9EDDC;
    color: #070600;
}

header h1 h2{
    margin: 0;
}

/* Footer 
------------------------------------*/
Footer {
    background: #4C3B4D;
    color: #D5CFE1;
    text-align: center
    
}

/* Work Experience
------------------------------------*/
.work {
    background: #89B6A5;
    color: #070600;
}


/* Education
------------------------------------*/
.education {
    background: #82968C;
    color: #D5CFE1;
}

/* div*/
.content-wrap{
    max-width: 950px;
    margin: auto;
    padding: 50px;
    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;
}


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