/* Small custom layer on top of Tailwind (loaded via CDN in base.html) */

html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(129, 140, 248, 0.3);
    color: #e0e7ff;
}

@media (prefers-reduced-motion: reduce) {

    .animate-fade-up,
    [class*="animate-"] {
        animation: none !important;
    }
}
