

.project [field=id]:before {
  content: "#";
}
.project [field=id] {
  margin-bottom: 30px;
  display: inline-block;
  display: none;
}

.project [field=name] {
  margin-bottom: 1em;
  font-weight: bold;
  font-size: 14pt;
  display: block;
}

.project [field=branch] {
  display: inline-block;
  margin: 3px;
  padding: 3px 15px;
  background-color: rgb(92, 102, 153);
  color: white;
  font-weight: bold;
  border-radius: 20px;
  text-shadow: 0 0 6px black;
}

.project {
  display: grid;
  gap: 1em;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .project {
      grid-template-columns: repeat(8,minmax(0,1fr));
  }
  .project > div:nth-child(1) {
    grid-column: span 6/span 6;
    order: 2;
  }
  .project [field=content] {
    grid-column: span 2/span 2;
  }
}

@media (max-width: 1024px) {
  .project [field=content] {
    margin-top: 1em;
  }
}

.project [field=content] > * {
  border: 2px solid rgba(226, 232, 240, 0.1);
  border-radius: 0.25rem;
  width: 7em;
  display: block;
  max-width: 100%;
}


.project [field=company] {
  margin-bottom: 0.5em;
}

.date {
  margin-bottom: 0.5em;
  
}

.project [field=description] {
  margin-bottom: 1em;
}