.project {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
 
}

@media screen and (min-width: 0) {
  .project {
    flex-direction: column;
  }
}

@media screen and (min-width: 768px) {
  .project {
    flex-direction: row;
  }
}