.founders {
  margin: 2vw auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 70%;
  gap: 30px;
}

.founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.founder span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.founder img {
  width: 60%;
  border-radius: 1000px;
  object-fit: cover;
  aspect-ratio: 1;
}

@media (max-width:768px) {
  .founders {
    width: 100%;
  }
}