:root {
    --font-family: 'Inter', sans-serif;
    --accent-color: #4f46e5;

    /* Light theme */
    --bg-color: #f5f5f5;
    --text-color: #222;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #121212;
        --text-color: #eee;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

header,
main,
footer {
    width: 100%;
}

header {
    display: flex;
    justify-content: center;
    text-align: center;
}

h1 {
    font-size: 2rem;
    color: var(--accent-color);
}

h2 {
    margin-top: 1rem;
    color: var(--accent-color);
}

main p,
main ul,
footer {
    font-size: 1rem;
    line-height: 1.6;
}

.projects ul {
    list-style: square inside;
    padding-left: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 2rem;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }

    .container {
        padding: 1rem;
    }
}

.todo{
    font-style: italic;
}