/*
Color palette
#373B1F - olive green (dark)
#ABAD9A - grey cream
#777867 - grey beige
#004043 - dark teal
#3B7073 - teal
#d0a591 - pink (contrast)
#fff6ed - nearly white
#DFE3CA - new contrast color background
#FFD6AD - new header and footer color
*/

/* Global styles
----------------------------------------------------- */
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  color: #373b1f;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  line-height: 1.25;
  background-color: #fff6ed;
}

img {
  max-width: 300px;
  width: 100%;
}
/* Regular links */
a:link {
  color: #777867;
}
a:visited {
  color: #777867;
}
a:hover {
  text-decoration: none;
}
/* buttons  come back to this when i understand more*/
.button {
  background-color: rgba(59, 112, 115);
  color: #d0a591;
  text-decoration: none;
  padding: 8px;
  border-radius: 4px;
  display: inline-block;
}
.button:hover {
  background-color: rgba(59, 112, 115, 80%);
  color: #d0a591;
  padding: 7px;
  border-radius: 4px;
}
.button:active {
  background-color: rgba(59, 112, 115, 60%);
  color: #d0a591;
  padding: 6px;
  border-radius: 4px;
}
/* content spacing */
h2 {
  margin: 0;
  font-size: 40px;
}
.content_wrapp {
  padding: 5px;
  max-width: 800px;
  width: 85%;
  margin: 0 auto;
  padding: 60px 0;
}
h1,
h2,
h3 {
  font-family: "Montserrat";
  line-height: 1;
  margin: 1;
}
h1 {
  font-size: 60px;
  margin: 0;
  padding-bottom: 10px;
} 
.item-details h3 {
  margin-bottom: 8px;
}
.item-details h3 + p {
  font-style: italic;
}
.item-details h3 ~ p {
  margin: 0;
}
.divider > section {
  border-bottom: 1px dashed #777867;
  padding: 25px 0;
}
.divider > section:last-of-type {
  border-bottom: none;
}
/* Profile
----------------------------------------------------- */
header {
  background-color: #373b1f;
  color: #FFD6AD;
}
/* menu bar
----------------------------------------------------- */
.menu-bar {
  list-style-type: none;
  padding: 0;
}
.menu-bar li {
  padding: 15px;
  display: inline-block;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
.sticky + .projects {
  padding-top: 100px;
}
.Menu a {
  color: #373b1f;
  text-decoration: none;
}

/* Projects
----------------------------------------------------- */
.projects {
  background-color: #fff6ed;
}

/* work experience
----------------------------------------------------- */
.contrast-section {
  /* background-color: #abad9a;*/
  background-color: #DFE3CA;
}
.contrast-section {
  color: #373b1f;
}
.contrast-section {
  color: #373b1f;
}

/* education
----------------------------------------------------- */

/* contact info
----------------------------------------------------- */
footer {
  background-color: #373b1f;
  color: #FFD6AD;
}
.content-list {
  list-style-type: none;
  padding: 0;
}
.content-list a {
  padding: 15px;
  display: inline-block;
}

/* responsive
----------------------------------------------------- */

@media screen and (min-width: 850px) {
  .job-items {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 20px;
  }
  h1,
  h2 {
    text-align: center;
  }
  footer {
    text-align: center;
  }
  Header {
    text-align: center;
  }
  .content-list {
    display: flex;
    justify-content: center;
  }
  .menu-bar {
    display: flex;
    justify-content: center;
  }
  .menu {
    background-color: #3b7073;
    margin: 0;
    padding: 5;
  }
}
@media screen and (max-width: 849px) {
  .content-list a {
    padding: 5px;
  }
  .menu {
    background-color: #3b7073;
    margin: 0;
    padding: 5;
  }
}
