    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji";
      background-color: #000;
      color: #fff;
    }
    a:focus-visible {
      outline-offset: 2px;
    }
      html {
    scroll-behavior: smooth; /* ✅ smooth scrolling */
  }

    @keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fadeIn {
  animation: fadeIn 1.2s ease-in-out forwards;
}


@font-face {
  font-family: 'MyFont';
  src: url('/assets/font/austrisademo-woqgw.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Optional: make a Tailwind utility */
.font-austrisa {
  font-family: 'austrisa';
}

.quintessential-regular {
  font-family: "Quintessential", serif;
  font-weight: 400;
  font-style: normal;
}

.boogaloo-regular {
  font-family: "Boogaloo", sans-serif;
  font-weight: 400;
  font-style: normal;
}


@keyframes flicker {
  0%   { opacity: 1; }
  45%  { opacity: 0.95; }
  50%  { opacity: 0.85; }
  55%  { opacity: 0.95; }
  100% { opacity: 1; }
}
