/* Ported from production: styles/GlobalStyles.tsx — resolved values */
:root {
  --bs-body-font-family: "Mark OT", Arial, sans-serif;
  /* Production GlobalStyles.tsx interpolates SPACE_AROUND_COMPONENTS object (renders [object Object]px) */
  --space-around-component: [object Object]px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
