	
/***** BASE STYLES *****/
html{
    font-size: 16px;
}

body{
    color: #2b2b2b;
    font-family: 'bilo', sans-serif;
    width: 100%;
    margin: 0;
    padding: 0;
}

section{
    max-width: 100%;
    box-sizing: border-box;
}

div{
    box-sizing: border-box;
}

/***** HEADER *****/

header {
    background: white;
    border-bottom: #bac133 solid 3px;
    height: 70px;
    width: 100%;
    padding: 0 45px;
    box-sizing: border-box;
    z-index: 1;
}

#header{
    display: flex;
    align-items: flex-start;
    width: 100%;
}

#name{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 403px;
}

#name h1 { 
    color: #bacbe9;
    font-size: 3em;
    font-weight: lighter;
    display: inline;
    margin: 0;
}

#navBar{
    width: 70%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav{
    flex-basis: 300px;
    max-width: 400px;
    flex: 1;
}

#navBar ul{
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 0;
}

#navBar ul li{
    margin: 15px;
}

#navBar ul li a{
    text-decoration: none;
    color: #e6ab59;
}

#navBar ul li a:hover {
    text-shadow: 2px 2px #bac133;
}


/****** MAIN STYLES *****/

/*-------- Resume ---------*/
#resume{
    width: 100%;
    display:flex;
    align-items: center;
    justify-content: center;
    background-color: #f5e9d7;
}

.resumeDiv{
    display:flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    border: 5px solid #bac133;
    border-radius: 25px;
    flex-shrink: 1;
    margin: 50px 0;
    max-width: 1275px;
}

.resumeDiv img{
    max-width: 100%;
    border-radius: 25px;
}

/*-------- Greeting --------*/

#hi{
    display: flex;
    max-width: 100%;
    background: #f5e9d7;
    margin: 71.84px 45px;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 15px;
}


#greetTxt{
    width: 70%;
    color:#e6ab59;
    font-size: 2.75em;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

#greetTxt span{
    color: #bacbe9;
    font-weight: lighter;
}

#greetTxt h2{
    font-weight: lighter;
    margin: 0;
}

#headshot{
    width: 30%;
    max-width: 200px;
}

#headshot img{
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    border: #bac133 solid 3px;
}

/*-------- About Me -----------*/

#aboutMe{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row wrap;
    padding: 0 45px;
    background-color: #bacbe9;
}

#aboutMe h2{
    background-color: #bac133;
    border-radius: 5px;
    padding: 0 15px;
    font-weight: lighter;
}

#pars{

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #f5e9d7;
    margin-bottom: 71.84px;
    border-radius: 5px;
}

#pars .spacing{
    border-right: #bac133 solid 3px;
}

#pars p{
    width: 50%;
    flex: auto;
    padding: 0 15px;
    text-align: justify;
}

/*-------- My Work ---------*/

#myWork {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-flow: column wrap;
    text-align: center;
    padding: 0 45px;
    box-sizing: border-box;
    margin: 71.84px 0;
}

#workContain{
    width: 100%;
}

    /*-- descriptions --*/
#descriptions{
    display: flex;
    max-width: 100%;
    justify-content: space-between;
    flex-flow: row wrap;
    padding-bottom: 71.84px;
    border-bottom: #bac133 solid 3px;
}

#handCoded,
#mobileFirst,
#desSpec{
    width: 30%;
    background-color: #f5e9d7;
    border-radius: 5px;
    padding: 0 15px;
}

#myWork i {
    font-size: 3em;
    margin: 15px 5px;
    color: #bac133;
}

#myWork h3{
    color:#e6ab59;
    font-weight: lighter;
}

#descriptions p{
    text-align: justify;
}

    /*-- Projects --*/
#projects{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row wrap;
}

#projects h2{
    font-weight: lighter;
    background-color: #bac133;
    border-radius: 5px;
    padding: 0 15px;
}

#projContain{
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

#projContain i{
    font-size: 1.5em;
}

#unplugged,
#map,
#lolCat,
#jamming,
#ogastore,
#ogasite,
#getapesite,
#pc,
#pt,
#pvc,
#mp{
    width: 45%;
    background-color: #f5e9d7;
    border-radius: 5px;
    padding: 15px;
    margin: 15px;
    min-height: 625px;
    flex-grow: 1;
}

#projects img{
    max-width: 100%;
    height: auto;
    max-height: 615px;
}

.minht140{
    min-height: 140px;
}

/* ----- Contact Info -----*/
#contactInfo{
    padding: 71.84px 45px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-flow: row wrap;
    background-color: #bacbe9;
}

#contactTxt{
    display: flex;
    justify-content: space-evenly;
    align-items: baseline;
    background-color: #f5e9d7;
    border-radius: 5px;
    padding: 0 15px;
}


#contactTxt i,
#contactTxt p{
    display: inline-block;
    text-decoration: none;
    padding: 0 5px;
}

#contactTxt p{
    color: #bac133;
}

#contactTxt i{
    color: #e6ab59;
}

#contactTxt a p:hover{
    text-shadow: none;
    color: #e6ab59;
}

#contactTxt a:hover {
    text-shadow: 2px 2px #bac133;
}

#social a{
    text-decoration: none;
}


/*------- footer -------*/

#foot{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .75em;
}

#foot i{
    color: #e6ab59;
}

/*====================================================
------- MEDIA QUERIES ---------
====================================================*/

/*------- Mobile -------*/

@media only screen and (max-width: 870px){

/*-- Header and Nav --*/

    header{
        height: 140px;
    }

    #header{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #name{
        align-items: center;
        color: black;
        justify-content: center;
        border-bottom: #bac133 solid 1px;
    }

    #navBar{
        width: 100%;
        justify-content: center;
    }

/*-- Greeting --*/

    #hi{
        justify-content: space-between;

    }

    #greetTxt {
        font-size: 2em;
    }

/*-- About Me --*/

    #aboutMe{
        justify-content: center;
    }

/*-- Projects --*/

    #projects{
        justify-content: center;
    }

}

@media only screen and (max-width: 710px){

/*-- Coding Descripions Columns -> rows --*/

    #descriptions{
        flex-flow: column wrap;
    }

    #handCoded,
    #mobileFirst,
    #desSpec{
        width: 100%;
    }

    #handCoded,
    #mobileFirst{
        margin-bottom: 45px;
    }

/*-- Contact section row -> column --*/

    #contactTxt {
        flex-flow: column wrap;
        align-items: center;
        padding-bottom: 19.92px;
    }
}

@media only screen and (max-width: 555px){

/*-- Header text resize --*/
    header{
        height: 100px;
    }

    #name{
        min-width: 270px;
    }

    #name h1{
        font-size: 2em;
        min-width: 100px;
    }

    #navBar ul li a{
        font-size: .75em;
    }

/*-- Greeting text resize --*/

    #hi{
        flex-flow: column wrap;
        align-items: center;
        justify-content: space-evenly;
    }

    #greetTxt{
        font-size: 1.5em;
        width: 100%;
    }

    #headershot{
        width: 100%;
    }

/*-- About me p colums -> rows --*/

    #pars{
        flex-flow: column wrap;
    }

    #pars .spacing {
        border-right: none;
        border-bottom: #bac133 solid 3px;
        margin-bottom: 0;
        padding-bottom: 16px;
    }

    #pars p{
        box-sizing: border-box;
        width: 100%;
    }

/*-- Projects columns -> rows --*/

    #projContain{
        flex-flow: column wrap;
    }

    #unplugged,
    #map,
    #lolCat,
    #jamming,
    #ogastore,
    #ogasite,
    #getapesite,
    #pc,
    #pt,
    #pvc,
    #mp{   
        width: 100%;
        margin-right: 0px;
        margin-left: 0px;
        min-height: 0px;
    }

    .resumeDiv{
        margin: 50px;
    }

}

@media only screen and (max-width: 350px){
/*-- Smaller Margins/padding --*/

    #hi{
        margin: 30px;
    }

    #aboutMe{
        padding: 0 30px;
    }

    #pars{
        margin-bottom: 30px;
    }

    #myWork{
        margin: 30px 0;
        padding: 0 30px;
    }

    #handCoded,
    #mobileFirst{
        margin-bottom: 30px;
    }

    #descriptions{
        padding-bottom: 30px;
    }

    #projects h2{
        margin: 30px;
    }

    #contactInfo{
        padding: 30px;
    }

    #contactInfo h2{
        margin: 15px 0 0;
        font-size: 1em;
    }

    #contactTxt p{
        font-size: .75em;
        margin: 15px 0 0;
    }

    #social{
        margin: 15px 0 0;
    }

/*-- Text resize --*/
    #greetTxt{
        font-size: 1em;
    }

    #aboutMe h2{
        font-size: 1.25em;
    }

    #projects h2{
        font-size: 1.25em;
    }
}