#documentation article {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 3px solid var(--color-accent-dark);
}

h2 {
  margin-bottom: 1.5rem;
}

.cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

main {
  animation-name: fade-in;
  animation-iteration-count: 1;
  animation-duration: 1.375s;
  animation-delay: 0.125s;
  animation-fill-mode: both;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
