@font-face {
  font-family: 'DefaultFont';
  src: url('/fonts/sl.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Inter', 'DefaultFont', sans-serif;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease-out forwards;
}

.nav-link-scrolled {
  color: #111827 !important;
  filter: brightness(0);
  /* text-gray-900 */
}

.nav-link-scrolled:hover {
  color: #4F46E5 !important;
  /* text-indigo-600 */
}