/* Default Light Mode Styles */
:root {
    --bg-color: #f5f5f5;
    --text-color: #121212;
    --link-color: #ff00ff;
    --accent-color: #ff00ff;
}

/* Dark Mode Selector (Triggers automatically) */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #121212;
        --text-color: #f5f5f5;
    }
}

html {
    display: flex;
    flex-direction: column;
}

body {
    font-family: sans-serif;
    line-height: 1.25;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 1rem auto;
    padding: 0 1rem;
    max-width: 50rem;
}

a {
    color: var(--link-color);
}