@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #171717; /* neutral-900 */
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #262626; /* neutral-800 */
}
::-webkit-scrollbar-thumb {
    background: #525252; /* neutral-600 */
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #737373; /* neutral-500 */
}
