/*
COLOR PALLETE

#343434 - dark gray
#F7FFF7 - almost white
#2F3061- dark blue
#FFE66D - yellow
#A1C607 -light blue
/*


/* Global Styles 
------------------*/

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

body {
    color: #343434;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

img {
    width: 300px;
    border-radius: 50%;
}

a {
    color: #FFE66D;
  }

a:hover {
    text-decoration: none;
  }


h1 {
    font-size: 100px;
    line-height: 1;
}

h2 {
    font-size: 45px;
}

h1, h2 {
    font-family: 'Caveat', cursive;
    font-weight: 400;
    margin: 0;
}

h3 {
    margin-bottom: 0;
}

h3 + p {
    font-style: italic;
}

h3 ~ p {
    margin: 0;
}

.content-wrap {
    max-width: 800px;
    width: 85%;
    margin: 0 auto;
    padding: 60px 0;
    
}

.divider > section {
    border-bottom: 1px dashed #343434;
    padding: 25px 0;
}

.divider > section:last-of-type {
    border-bottom: none;
}

/* Profile 
------------------*/
header {
    background: #2F3061;
    color: #F7FFF7;
    min-height: 600px;
    overflow: hidden;
}

/* .profile-bio {
    float: left;
    width: 600px;
} */

/* Projects 
------------------*/
.projects {
    background: #F7FFF7;
    clear: both;
}

.languages {
    justify-content: center;
    text-align: center;
}

.language-proficiency {
    padding: 15px;
    max-width: 90%;

}

.language-proficiency p, .language-proficiency h3 {
    padding: 15px;
    margin-right: 20px;

}

/* Work Experience
------------------*/
.work-experience {
    background: #A1C6D7;
}

/* Education 
------------------*/

.education p {
    width: 60%;
}


/* Contact me
------------------*/
footer {
    background: #343434;
    color: #F7FFF7;
    /* text-align: center; */
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list a {
    display: inline-block;
    padding: 15px;
}

/* Responsive styles
------------------*/
@media screen and (min-width: 750px) {
    header {
        text-align: center;
    }
    
    .profile-img {
        float: left;
        margin-right: 20px;
    }
    .language-proficiency {
        display: flex;
        justify-content: center;
    
    }

    .job-item {
        display: grid;
        grid-template-columns: 1fr 2fr;
        column-gap: 20px;
    }
    .education {
        background-image: url('../images/pencils.jpg');
        background-size: cover;
        background-position: top right;
        padding-bottom: 100px;
    }
    .contact-list{
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 750px) {
    h1 {
        font-size: 75px;
        margin-bottom: 20px;
    }

    h1, h2 {
        line-height: 0.9;
    }

    .contact-list a {
        padding: 5px;
    }
    .education {
        background-color: #FFE66D;
    }


}