.project {
  margin-bottom: 40px;
  width: 100%;
  background-color: #f2f3f3;
  display: flex;
  flex-direction: row;
}

.project-image {
  width: 35%;
}

.project-description {
  width: 65%;
  padding-top: 0px;
  padding-left: 12px;
  li {
    line-height: 1.1em;
  }
  * {
    margin: 0;
    margin-top: 5px;
  }
  a {
    color: black;
    text-decoration: none;
    transition: 0.3s ease;
  }
  a:hover {
    color: blue;
  }
  h4 {
    padding-top: 8px;
  }
}

@media (max-width: 810px) {
  .project {
    padding-left: 0px;
    flex-direction: column;
    align-items: center;

    h2, h3, h4 {
      text-align: center;
    }
  }
  .project-description {
    width: 100%;
  }
  .project-image {
    width: 45%;
  }
}
