#projects {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.projects-content {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 600px));
  margin-top: 2rem;
}

.project {
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  border-left: 3px solid gold;
  background-color: rgba(0, 0, 0, 0.02);
  max-width: 600px;
  width: 100%
}

.project-title {
  font-family: "Plein-Variable", sans-serif;
}

.project-info>span {
  font-weight: 600;
}
