/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
}

body {
  margin: 0;
  color: #1a1a1a;
  background: #fafafa;
  max-width: 720px;
  margin-inline: auto;
  padding: 2rem;
  font-family: system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
}

a {
  color: #0057b7;
}

.typing-dots {
  vertical-align: middle;
  gap: 3px;
  padding-left: 2px;
  display: inline-flex;
}

.typing-dots span {
  background: #999;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1.2s ease-in-out infinite typing-bounce;
  display: inline-block;
}

.typing-dots span:nth-child(2) {
  animation-delay: .15s;
}

.typing-dots span:nth-child(3) {
  animation-delay: .3s;
}

@keyframes typing-bounce {
  0%, 60%, 100% {
    opacity: .3;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/*# sourceMappingURL=src_app_globals_0p2ml0n.css.map*/