@import 'tailwindcss';

/* Additional styles */
@import './additional-styles/utility-patterns.css' layer(components);
@import './additional-styles/theme.css';

@font-face {
  font-family: 'nacelle';
  src: local('nacelle'), url(fonts/nacelle-regular.woff2) format('woff2');
}

@font-face {
  font-family: 'nacelle';
  font-weight: 600;
  src: local('nacelle'), url(fonts/nacelle-semibold.woff2) format('woff2');
}

@theme {
  --font-inter: var(--font-inter), sans-serif;
  --font-nacelle: var(--font-nacelle), sans-serif;

  --text-xs: 0.8125rem;
  --text-xs--line-height: 1.5384;
  --text-sm: 0.875rem;
  --text-sm--line-height: 1.5715;
  --text-base: 0.9375rem;
  --text-base--line-height: 1.5333;
  --text-base--letter-spacing: -0.0125em;
  --text-lg: 1.125rem;
  --text-lg--line-height: 1.5;
  --text-lg--letter-spacing: -0.0125em;
  --text-xl: 1.25rem;
  --text-xl--line-height: 1.5;
  --text-xl--letter-spacing: -0.0125em;
  --text-2xl: 1.5rem;
  --text-2xl--line-height: 1.415;
  --text-2xl--letter-spacing: -0.0268em;
  --text-3xl: 1.75rem;
  --text-3xl--line-height: 1.3571;
  --text-3xl--letter-spacing: -0.0268em;
  --text-4xl: 2.5rem;
  --text-4xl--line-height: 1.1;
  --text-4xl--letter-spacing: -0.0268em;
  --text-5xl: 3.5rem;
  --text-5xl--line-height: 1;
  --text-5xl--letter-spacing: -0.0268em;
  --text-6xl: 4rem;
  --text-6xl--line-height: 1;
  --text-6xl--letter-spacing: -0.0268em;
  --text-7xl: 4.5rem;
  --text-7xl--line-height: 1;
  --text-7xl--letter-spacing: -0.0268em;

  --animate-shine: shine 5s ease-in-out 500ms infinite;
  --animate-gradient: gradient 6s linear infinite;

  @keyframes shine {
    0% {
      top: 0;
      transform: scaleY(5);
      opacity: 0;
    }
    10% {
      opacity: 0.8;
    }
    20% {
      top: 100%;
      transform: scaleY(10);
      opacity: 0;
    }
    100% {
      top: 100%;
      transform: scaleY(1);
      opacity: 0;
    }
  }
  @keyframes gradient {
    to {
      background-position: 200% center;
    }
  }
}

/*
  The default border color has changed to `currentColor` in Tailwind CSS v4,
  so we've added these compatibility styles to make sure everything still
  looks the same as it did with Tailwind CSS v3.

  If we ever want to remove these styles, we need to add an explicit border
  color utility to any element that depends on these defaults.
*/
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    border-color: var(--color-gray-200, currentColor);
  }
}

html,body{
  font-family: 'Nacelle', sans-serif;
}

.btn-confirm{
  color: black;
}

@keyframes animationpulse{

  0%{
    transform: scale(1);
  }

  50%{
    transform: scale(1.1);
  }

  100%{
    transform: scale(1);
  }
}


.animation-pulse img{
  animation: animationpulse infinite 2.5s;
}