:root {
  --background: 1 0 0; /* WHITE */
  --foreground: 0.68 0 0;

  --primary: 0.99 0.0067 277.17;
  --primary-foreground: 0 0 0; /* BLACK */

  --primary-button-background: 0.66 0.2247 34.41; /* ORANGE */
  --primary-button-text: 1 0 0; /* WHITE */
  --primary-border: 0.66 0.2247 34.41; /* ORANGE */
  --primary-text: 0.66 0.2247 34.41; /* ORANGE */

  --primary-icon: 0.66 0.2247 34.41; /* ORANGE */
  --secondary-icon: 1 0 0; /* WHITE */

  --secondary: 0.25 0.0755 266.95;
  --secondary-foreground: 1 0 0; /* WHITE */
}

@layer utilities {
  .container {
    margin: 0 auto;
    padding: 0 16px;
  }
}

a {
  display: block;
}

@media (min-width: 1536px) {
  .container {
    max-width: 1440px !important;
  }
}

@media (min-width: 400px) {
  .xsm-w-auto {
    width: auto !important;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.blinking-text {
  animation: blink 2s infinite;
  font-size: 24px;
  color: red;
}
