#tsparticles {
    opacity: 0;
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    animation: fade-in-particles 5s ease-out forwards;
    animation-delay: 1s;
}

@keyframes fade-in-particles {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}