#all-projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}

h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #404654;
  margin-top: 50px;
  margin-bottom: 50px;
}

.all-projects-ul {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  gap: 2rem;
  justify-content: center;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.all-projects-ul li {
  list-style: none;
}

@media (max-width: 1024px) {
  .all-projects-ul {
    grid-template-columns: repeat(2, 300px);
  }
}

@media (max-width: 680px) {
  .all-projects-ul {
    grid-template-columns: 300px;
  }
}

.all-projects-container {
  height: 100vh;
}
