/*
COLOR PALETTE
https://coolors.co/363537-009ddc-e01a4f-ebf5ee-f5b841
--jet: #363537ff;
--carolina-blue: #009ddcff;
--ua-red: #e01a4fff;
--ivory: #f6f7ebff;
--maximum-yellow-red: #f5b841ff;


This is the master branch hahahahaha
*/

/* Global styles
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
html {
    box-sizing:border-box;
}
*, *:before, *:after {
    box-sizing:inherit;
}
body {
    color: #363537ff;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

h1, h2 {
    font-family: 'Merienda', cursive;
    font-weight: 400;
    margin: 0;
}

h2 {
    font-size: 30px;
}
h3{
    margin-bottom: 0;
}



img {
    width: 300px;
}

a {
    color: #363537ff;
}

a:hover {
    text-decoration: none;
}

a.btn {
    color: #f6f7ebff;
    background: rgba(0, 157, 220, 100%);
    text-decoration: none;
    border-radius: 5px;
    padding: 8px;
    display: inline-block;
		margin: 10px 5px 5px 0;
}

a.btn:hover {
    background: rgba(0, 157, 220, 80%);
}

.content-wrap {
    max-width: 800px;
    width: 85%;
    margin: 0 auto;
    padding: 35px 0;
}

.item-details h3 + p {
    font-style: italic;
}

.item-details h3 ~ p {
    margin: 0;
}

.divider > section  {
    border-bottom: 1px dashed #363537ff;
    padding: 25px 0;
}

.divider > section:last-of-type {
    border-bottom: none;
}


/* Profile
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
header {
    background: #009DDC;
    color: #f6f7ebff;
}

header h1 {
    font-size: 70px;
    margin-bottom: 20px;
    line-height: 1;
}


/* Projects
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.projects {
    background: #EBF5EE;
}

.projects h2 {
  margin: 20px 0 30px 0;
}

.project-item {
    overflow: hidden;
    margin-bottom: 30px;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
}

.project-item h3 {
    margin: 0;
}

/* Work Experience
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.work-experience {
 background: #F5B841;
}

.job-item h3 {
    margin: 0;
}

/* Education
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.education {
    background-image: url(../images/sharon-mccutcheon-unsplash.jpg);
    background-size: cover;
    background-position: center;
}
.education h3 {
    width: 60%;
}
.education p {
    width: 55%;
}

/* Contact Info
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
footer {
    background: #363537ff;
    color: #f6f7ebff;
}

footer a {
    color: #f5b841ff;
}

.contact-list {
    list-style-type: none;
    padding: 0;
}

.contact-list a {
    padding: 5px;
    display: inline-block;
}

/* Responsive
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@media screen and (max-width: 480px) {
a.btn {
    width: 100%;
		text-align: center;
}

header h1 {
	font-size: 60px;
}

h2 {
	font-size: 25px;
}
}

@media screen and (min-width: 760px) {
    .project-item img {
        float: left;
        margin-right: 20px;
				margin-bottom: 50px;
    }
    .job-item {
        display: grid;
        grid-template-columns: 1fr 2fr;
        column-gap: 20px;
    }
    header, footer {
        text-align: center;
    }
    .contact-list {
        display: flex;
        justify-content: center;
    }
    .contact-list a {
        padding: 15px;
    }
    h1 {
        font-size: 90px;
    }
    h2 {
        font-size: 45px;
    }
}
