/* Define Geist fonts */
:root {
    --font-sans: 'Geist', sans-serif;
    --font-mono: 'Geist Mono', monospace;
}

/* Custom styles */
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
}

/* Smooth transitions for links */
a {
    transition-duration: 150ms;
}

/* Selection color */
::selection {
    background-color: rgb(38, 38, 38); /* neutral-800 */
}

