/*
COLOR PALETTE
https://coolors.co/f7fff7-343434-2f3061-ffe66d-a1c6d7
#F7FFF7 - almost white
#343434 - dark gray - almost black
#2F3061 - blue dark
#FFE66D - yellow
#A1C6D7 - blue light
*/

/*
font-family: 'Caveat', cursive;
font-family: 'Montserrat', sans-serif;
*/

/* Global styles
-----------------*/
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  /* color: #343434; */
  color: red;
  margin: 0;
  padding: 0;
  font-family: fantasy;
  /* font-family: Hurricane; */
  font-size: 15px;
  line-height: 1.5;
}
img {
  width: 100%;
}
a {
  color: #ffe66d;
}
h1 {
  font-size: 100px;
  line-height: 1;
}
h2 {
  font-size: 45px;
}
h3 {
  margin-bottom: 0;
}
h1 {
  font-family: "Hurricane", cursive;
}

h2 {
  font-weight: 400;
  margin: 0;
}
a:hover {
  text-decoration: none;
}
.content-wrap {
  max-width: 800px;
  width: 85%;
  margin: 0 auto;
  padding: 60px 0;
}

.item-details h3 + p {
  font-style: italic;
}
.item-details h3 ~ p {
  margin: 0;
}
.divider > section {
  border-bottom: 1px dashed #343434;
  padding: 25px 0;
}
.divider > section:last-of-type {
  border-bottom: none;
}
/* Profile
  -----------------*/
header {
  background: black;
  color: red;
  /* background: #2f3061;
  color: #f7fff7; */
}
/* Projects
  -----------------*/
.projects {
  background: #a1c6d7;
}
.projects a {
  color: #2f3061;
}
.projects .btn {
  color: #f7fff7;
  background: #2f3061;
  text-decoration: none;
  padding: 8px;
  border-radius: 4px;
  display: inline-block;
}
.projects a:hover {
  background: rgba(47, 48, 97, 80%);
}
.project-item {
  overflow: hidden;
}
.project-item h3 {
  margin-top: 0;
}

/* Technologies
  -----------------*/
.technology {
  color: #2f3061;
}
/* .technology1 {
  color: aqua;
  float: right;
} */
.technology-item {
  color: #2f3061;
  margin: 0;
  float: right;
}

/* Work Experience
  -----------------*/
.work-experience {
  background: #f7fff7;
  color: #2f3061;
}
/* Education
  -----------------*/
.education {
  background-color: #a1c6d7;
}
/* .education p {
  width: 60%;
} */
/* Contact Info
  -----------------*/
footer {
  background: #2f3061;
  color: red;
}
.contact-list {
  list-style-type: none;
  padding: 0;
}
.contact-list a {
  padding: 15px;
  display: inline-block;
}

/* Responsive
  -----------------*/
@media screen and (min-width: 600px) {
  .project-item img {
    float: left;
    margin-right: 20px;
  }
  .job-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 20px;
  }
  header,
  footer {
    text-align: center;
  }
  .contact-list {
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 599px) {
  h1 {
    font-size: 75px;
    line-height: 0.9;
    margin-bottom: 20px;
  }
  h2 {
    line-height: 1;
  }
  .contact-list a {
    padding: 5px;
  }
}
