:root {
    --bg: #faf8f5;
    --text: #2d2a26;
    --text-light: #756f66;
    --accent: #d97706;
    --border: #e7e3dd;
}

body {
    max-width: 650px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

h1 {
    font-size: 2em;
    margin-bottom: 0.2em;
    font-weight: 600;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2em 0;
}

img.profile {
    border-radius: 50%;
    width: 240px;
    height: 240px;
    object-fit: cover;
}
