/* Import Inter font family */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* Global styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff; /* White base */
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: 10px;
}
::-webkit-scrollbar-track {
    background: #f3f4f6;
}

/* Custom Colors for the Eras */
.color-80s-pink {
    background-color: #FF00FF;
    color: #000000;
}
.color-80s-green {
    background-color: #00FF00;
    color: #000000;
}
.color-cyberpunk-blue {
    background-color: #00FFFF;
    color: #000000;
}
.color-cyberpunk-silver {
    background-color: #C0C0C0;
    color: #000000;
}
.color-artdeco-gold {
    background-color: #FFD700;
    color: #000000;
}