.history-container {
  width: 100%;
  max-width: 1000px;

  padding: 5rem 0;
}

.history-content {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.history-card {
  display: flex;
  flex-direction: column;

  padding: 1rem;
  border-radius: 0.5rem;

  box-shadow: 0 0 0.5rem 0 var(--gray7);
}

.history-card > h3 {
  font-weight: 600;
  margin-bottom: 1rem;

  text-shadow: 2px 3px 3px var(--gray8);
}

.history-card span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.history-card span, p { font-weight: 500; }
.history-card p { margin: 0.8rem 0 0 0; }

.fa-calendar-check { font-size: 0.9rem; }
.fa-circle { font-size: 0.4rem; }

.techs-title {
  margin: 0.8rem 0 0.3rem 0;

  text-shadow: 2px 2px 3px var(--gray7);
  color: var(--blue9);
}


@media (max-width: 1045px) {
  .history-container {
    padding: 3rem 1rem;
  }
}

@media (max-width: 762px) {
  .history-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .history-content {
    max-width: 450px;
    grid-template-columns: repeat(1, 1fr);
  }
}