/* css/style.css */

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar for better aesthetic on desktop */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a; /* solo-dark */
}

::-webkit-scrollbar-thumb {
    background: #1f1f1f;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5FA777; /* solo-green */
}
