/* Color Palette
#1 - #061826
#2 - #0471A6
#3 - #89AAE6
#4 - #AC80A0
#5 - #000000
*/
/* Box
------------------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box;
}
/* Global styles 
------------------------------------*/
body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #89AAE6;
    color: #000000;
}
.content-wrap {
    max-width: 950px;       
    margin: 0 auto;  
    padding: 40px;
    overflow: hidden;    
}

/* Headings */
h1, h2, h3 {
    font-family: 'Montserrat', 'Roboto', sans-serif;
    letter-spacing: 0.5px;
}

h2 {
    margin-top: 0;
}

/* Header & Footer 
------------------------------------*/
.site-header {
    background-color: #061826;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

.site-header img {
    width: 120px;
    border-radius: 50%;
}

.site-header a {
    color: #89AAE6;
    text-decoration: none;
}

.site-header a:hover {
    text-decoration: underline;
}

.site-header h1,
.site-header h2 {
    margin: 0;
}

.site-footer {
    background-color: #0471A6;
    color: #ffffff;
    text-align: center;
    padding: 1rem;
}

.site-footer a {
    color: #ffffff;
    margin: 0 10px;
}


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

/* Work Experience
------------------------------------*/
.work-experience {
    background-color: #AC80A0;
    padding: 2rem;
    color: #ffffff;
}

.work-experience h2 {
    border-bottom: 2px solid #ffffff;
}

/* Education
------------------------------------*/
.education {
    background-color: #0471A6;
    padding: 2rem;
    color: #ffffff;
}

.education h2 {
    border-bottom: 2px solid #ffffff;
}


/* Lists */
ul {
    font-size: 1rem;
    font-weight: 400;
}

/* Paragraphs */
p {
    font-size: 1rem;
    font-weight: 400;
}

.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;
}