:root {
    --bg-color: #1e1e1e;
    --text-color: #d4b98c;
}

[data-theme="light"] {
    --bg-color: #d4b98c;
    --text-color: #1e1e1e;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
    font-family: monospace;
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.profile {
    font-size: 16px;
    white-space: pre;
    line-height: 1.2;
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: inherit;
    font-family: monospace;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
}

a, .theme-toggle {
    color: inherit;
    text-decoration: none;
}

a:hover, .theme-toggle:hover {
    text-decoration: underline;
}
