/*
COLOR PALETTE
#FCDE9C Peach
#FFA552 Rajah
#BA5624 Burnt Orange
#381D2A Dark Purple
#C4D6B0 Tea GreenNEW for QA Automation Engineer page#6B9080 blue/green#A4C3B2 mint-ish#CCE3DE light blue/green#EAF4F4 creamy white 
*/

/* Global styles
----------------------------------*/
html {
  box-sizing: border-box;
}

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

body {
  color: #6b9080;
  margin: 0;
  padding: 0;
  font-family: "Monserrat", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

img {
  width: 300px;
}

a {
  color: #6b9080;
}

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;
}

/* all type selectors before class selectors */
.content-wrap {
  /*  width: 800px; */
  max-width: 800px;
  width: 85%;
  margin: 0 auto;
  padding: 60px 0;
}

h3 {
  margin-bottom: 0;
}

/* adjacent sibling combo directly after h3 */
/* indside the item-details div class */
.item-details h3 + p {
  font-style: italic;
}

/* general sibling combo style all p after h3 */
/* indside the item-details div class */
.item-details h3 ~ p {
  margin: 0;
}

/* only the child items with section containing divider class */
.divider > section {
  border-bottom: 1px dashed #6b9080;
  padding: 25px 0;
}

/* remove the last dashed divider line */
.divider > section:last-of-type {
  border-bottom: none;
}

/* Profile
----------------------------------*/
header {
  background: #a4c3b2;
  color: #eaf4f4;
}

/* Examples section
----------------------------------*/
.example {
  background: #cce3de;
}

.example a {
  color: #2f3061;
}

.example .btn {
  color: #f7fff7;
  background: #6b9080;
  text-decoration: none;
  padding: 8px;
  border-radius: 4px;
  display: inline-block;
}

.example .btn:hover {
  background: rgba(47, 48, 97, 80%);
}

.example-item {
  overflow: hidden;
}

.example-item h3 {
  margin-top: 0;
}

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

/* grid column 1 is 1fr to be smaller
 2nd column is twice the size as 1
 moved to @media query at the end

.job-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 20px;
}
*/

/* EDUCATION
----------------------------------*/
.education {
  background: #eaf4f4;
  /* background-image: url(../images/#.jpg); */
  background-size: cover;
  background-position: top right;
  padding-bottom: 100px;
}

.educaton p {
  width: 60%;
}

/* Contact Info
----------------------------------*/
footer {
  background: #6b9080;
  color: #eaf4f4;
}

.contact a {
  color: #eaf4f4;
  /*  color: #C4D6B0; */
}

.contact-list {
  color: #eaf4f4;
  list-style-type: none;
  padding: 0;
}

.contact-list a {
  color: #eaf4f4;
  /*  padding: 15px; */
  display: inline-block;
}

/* 404 not found page
----------------------------------*/
.not_found {
  background: #a4c3b2;
  color: #eaf4f4;
  padding: 100px;
}

.not_found .btn {
  color: #f7fff7;
  background: #6b9080;
  text-decoration: none;
  padding: 8px;
  border-radius: 4px;
  display: inline-block;
}

/* Responsive
----------------------------------*/
/* min-width: 750px anything smaller will
be stacked in examples and work experience,
 larger it goes back to 2 columns */

@media screen and (min-width: 750px) {
  header,
  footer {
    text-align: center;
  }

  .example-item img {
    float: left;
    margin-right: 20px;
  }

  .job-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 20px;
  }

  .contact-list {
    display: flex;
    align-content: center;
    justify-content: space-between;
  }
}

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

  h2 {
    line-height: 1;
  }

  .contact-list a {
    padding: 5px;
  }
}
