
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.3;
}

:root{
  --txt:#f8fafc;
  --muted:#e2e8f0;
  --glass:#ffffff24;
  --line:#ffffff59;
  --accent:#f59e0b;
}
*{box-sizing:border-box}

body {
    opacity: 0;
    animation: fadeIn 1s forwards;
}


@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
