/*
COLOR PALLATE
https://coolors.co/1a1f16-1e3f20-345830-4a7856-94ecbe
1A1F16 - dark jungle green
1E3F20 - forrest green traditional
345830 - hunter green
4A7856 - amazon
9BC494 - magic mint
#C5B192 - tan
*/

/* Global styles
---------------------------------- */
html {
  box-sizingh:border-box;
}
*,*:before, *:after {
  box-sizing: inherit;
}
body {
  color: #1A1F16;
  margin: 0;
  padding: 0;
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  line-height: 1.5;
}
img {
  width: 300px;
  border-radius: 4px;
}
a:hover{
 text-decoration: none;
}
h1{
  font-size: 80px;
  margin-bottom: 0;
}
h2{
  font-size: 30px;
}
h1, h2 {
  font-family: 'Major Mono Display', monospace;

}
.content-wrap{
  max-width:800px;
  width: 85%;
  margin: 0 auto;
  padding: 60px 0;
}
h3{
  margin-bottom: 0;
}
.item-details h3 + p {
  font-style: italic;
}
.item-details h3 ~ p{
  margin: 0;
}
.divider > section {
  border-bottom: 1px dashed white;
  padding: 25px 0;
}
.divider > section:last-of-type {
  border-bottom: none;
}
.list{
  list-style-type: none;
  padding: 0;
}
.list a{
  padding: 15px;
  display: inline-block;
}
.btn{
  text-decoration: none;
  padding: 8px;
  display: inline-block;
}
/* Header
---------------------------------- */
header {
  background: #1E3F20;
  color: white;
}
.skip{
  color: #1E3F20;
  background: white;
  display: inline-block;
  text-decoration: none;
  padding: 8px;
  margin-left: 5px;

}
.skip :hover{
  background: rgba( 150, 118, 68, 80%);
}

/* Profile
---------------------------------- */
.profile{
  background: #1A1F16;
  color: #9BC494;
}
.profile .btn{
  color: #1A1F16;
  background: #9BC494;
}
.profile .btn:hover{
  background: rgba( 155, 196, 148, 80%);
}
.profile img {
  width: 250px;
  height: 300px;
  border-radius: 4px;
}
.profile-list a{
  display:inline-block;
}
/* Education
---------------------------------- */
.education{
  background-image: url(../images/sharon-mccutcheon-unsplash.jpg);
  background-size: cover;
  /*background-position: top right;*/
  padding-bottom: 100px;
}
.education p{
  width: 60%;
}
/* Work
---------------------------------- */
.work-experience{
  background: #1A1F16;
  color: #9BC494;
}
.work-experience .btn{
  color: #1A1F16;
  background: #9BC494;
  padding: 3px;
}
.work-experience .btn:hover{
  background: rgba( 155, 196, 148, 80%);
}
.work-experience img{
  height: 200px;
  width: 200px;
}
.work-experience .divider > section {
  border-bottom: 1px dashed #9BC494;
  padding: 25px 0;
}
.work-experience .divider > section:last-of-type {
  border-bottom: none;
}
/* Projects
---------------------------------- */
.projects{
  background: #1A1F16;
  color: white;
  background-image: url(../images/wooden-background.jpg);
  background-size: cover;
}
.projects .btn{
  color: #1A1F16;
  background: white;
}
.projects .inline-btn .btn{
  padding: 3px;
}
.projects .btn:hover{
  background: rgba( 255, 255, 255, 80%);
}
.project-item {
  overflow: hidden;
}
.project-item h3{
  margin-top: 0;
}

/* Contact
---------------------------------- */
footer{
  background: #1E3F20;
  color: white;
}
.contacts a{
  background: #1E3F20;
  margin-left: 8px;
  color: white;
}

/* Responsive
---------------------------------- */
@media screen and (min-width:750px){
  header, footer {
    text-align: center;
  }
  .project-item img {
    float: left;
    margin-right: 20px;
  }
  .profile img {
    float: left;
    margin-right: 30px;
  }
  .job-item{
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    column-gap: 30px;
  }
  .project-item{
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 30px;
  }
  .list{
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width:749px){
  h1 {
    font-size: 55px;
  }
  .list a {
    padding: 5px;
  }
  .profile-list a{
    margin-bottom: 10px;
  }
}
