* {
  font-family: "SUSE Mono", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.header {
  overflow: hidden;
  padding: 20px 10px;
  border: 2px solid black;
  border-bottom: none;
}

.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

.header-right {
  float: right;
}

.hero {
  text-align: center;
  max-height: 400px;
  padding: 8%;
  border: 2px solid black;
  border-top: none;
  border-bottom: none;
  font-size: 1.5rem;
}
.hero > p {
  font-size: 1rem;
}

/* Container */
.container {
  display: grid;
  grid-template-columns: 1fr 2fr 1.5fr;
  gap: 10px;
  border: 2px solid black;
  column-gap: 0;
  border-bottom: 0;
}

.container > div {
  border-right: 2px solid black;
}
.container > div:last-child {
  border-right: none;
}

.container h3 {
  font-size: 1.5rem;
  padding-left: 8px;
}

/* Project Page */
.project-container {
  border: 2px solid black;
}

.project-container h3,
.contact-heading {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 24px;
  border-bottom: 2px solid black;
  font-size: 1.5rem;
}

.subheading > h3 {
  text-align: center;
  font-size: 1.5rem;
}

/* Contact */
.contact-form {
  padding: 0px 36px 0 36px;
}
.contact-form input,
textarea {
  width: 100%;
  padding: 8px;
}
.contact-form textarea {
  resize: none;
  height: 100px;
}
.contact-form > p {
  text-align: center;
}
.contact-form a {
  text-decoration: none;
}

.btn {
  display: block;
  margin: auto;
  padding-top: 20px;
  max-width: 150px;
}

/* Projects */
.projects ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.projects li {
  padding: 8px 8px 8px 24px;
  border-bottom: 2px solid black;
}

.projects li:last-child,
.job:last-child {
  border-bottom: none;
}

/* Job */
.job {
  border-bottom: 2px solid black;
  padding: 0 8px 8px 24px;
  margin-bottom: 10px;
}

.job > a {
  text-decoration: none;
}

/* Education */

.education > h3 {
  padding: 0 0 0 24px;
}
.education p,h4,li{
  padding-left:14px;
}
.education ul {
  list-style-type: "-";
}

/* Reviews */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  column-gap: 0;
}

.review {
  border: 2px solid black;
  border-radius: 36px;
  padding: 20px;
  margin: 20px;
  width: 80%;
}

.review > h5 {
  color: gray;
}

/* Review Container  */
.container-bottom {
  border: 2px solid black;
}
.container-bottom h3 {
  padding-left: 22px;
}
/* Footer */
footer {
  display: flex;
  justify-content: space-around;
  margin-top: 150px;
  padding-bottom: 100px;
  font-size: 28px;
}
/* 
    Finish off every page look
    Add mobile adaptation */
@media (max-width: 768px) {
  /* Navigation */
    /* Navigation */
    .header {
      padding: 10px;
    }
    
    .header nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    
    .logo {
      margin-bottom: 10px;
      text-align: center;
      width: 100%;
    }
    
    .header-right {
      float: none;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      width: 100%;
    }
    .header .logo{
      font-size: 24px;
    }
    .header a {
      padding: 4px 8px;
      font-size: 12px;
    }

  /* Hero */
  .hero {
    padding: 40px 10px;
    font-size: 1.2rem;
  }
  .hero > p {
    font-size: 0.9rem;
  }

  /* Home */
  .container {
    display: block;
  }
  .container > div {
    border-right: none;
  }
  

  .container h3 {
    text-align: center;
    margin-bottom: 0;
    padding-left: 0;
    padding-bottom: 24px;
    border-bottom: 2px solid black;
  }
  
  /* Project */
  .projects li:last-child, .job:last-child {
     border-bottom: 2px solid black;
  }
  /* ------------------------------------------------------------------------------------------------------ */
  .projects li {
    text-align: center;
    background-color: rgb(234, 234, 234);
    padding: 12px 0;
    box-sizing: border-box;
  }
  

  /* Job */
  .job {
    padding: 12px;
    margin: 0;
    background-color: rgb(234, 234, 234);
  }

  /* Education */
  .education {
    padding: 0;
    margin: 0;
  }
  .education ul{
    padding: 0 12px 12px 12px;
    margin: 0;
  }

  /* Review */
  .testimonials {
    display: block;
  }
  .review {
    width: auto;
    margin: 15px;
  }

  /* Footer */
  footer {
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
    padding-bottom: 40px;
    font-size: 18px;
  }
}
