* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 4rem 2rem;
}

main {
    max-width: 500px;
    text-align: center;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.bio {
    color: #888;
    margin-bottom: 2rem;
}

.links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.links a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 1px solid #333;
    border-radius: 6px;
    transition: border-color 0.2s;
}

.links a:hover {
    border-color: #888;
}

.projects {
    text-align: left;
}

.projects h2 {
    font-size: 1rem;
    color: #888;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.projects ul {
    list-style: none;
}

.projects li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #1a1a1a;
}

.projects a {
    color: #fff;
    text-decoration: none;
}

.projects a:hover {
    text-decoration: underline;
}