:root {
    --dark-bg: #121212;
    --dark-text: #e0e0e0;

}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 80px;
    color: var(--text-color);
    background-color: var(--bg-color);
}

h1, h2, h3 {
    text-align: center;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-decoration: underline;

}
[data-theme="dark"] {
    --text-color: var(--dark-text);
    --bg-color: var(--dark-bg);
}

[data-theme="light"] {
    --text-color: #333;
    --bg-color: #fff;
}
