/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

html {
  scrollbar-gutter: stable;
}

:where(input, textarea, select, button, a, [role="button"], [tabindex]:not([tabindex="-1"])):focus-visible {
  outline: none;
}

.guest-landing-image {
  animation: guest-landing-drift 22s ease-in-out infinite alternate;
  transform-origin: center;
}

@media (prefers-reduced-motion: reduce) {
  .guest-landing-image {
    animation: none;
  }
}

@media (max-width: 640px) {
  .guest-landing-image {
    animation: none;
  }
}

@keyframes guest-landing-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(-1.25rem, -0.75rem, 0);
  }
}
