/* --- TAILWIND DIRECTIVES --- */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* --- BASE STYLES --- */
body {
    font-family: 'Roboto Mono', monospace; /* Set the default font for the entire site */
    background-color: #0A0A0A;
    color: #F5F5F5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0A0A0A;
}
::-webkit-scrollbar-thumb {
    background: #2A2A2A;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #FF3B3B;
}

