* {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.no-transition {
    transition: none !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-bottom: max(5rem, 12vh);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    .main-stat:hover {
        transform: none;
    }
}

body {
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    color: var(--text-color);
    overflow-x: hidden;
}
