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

body {
    font-family: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
    color: #222;
    background: #faf8f5;
    line-height: 1.6;
    padding: 4rem 1.5rem;
}

main {
    max-width: 600px;
    margin: 0 auto;
}

header {
    margin-bottom: 3rem;
}

.profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.8rem;
}

h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.bio {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.4rem;
}

.contact {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.95rem;
    color: #555;
}

.contact a {
    color: #555;
    text-decoration: none;
    line-height: 0;
}

.contact a:hover {
    color: #000;
}

h2 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 0.8rem;
}

.project-list {
    list-style: none;
}

.project-list li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.project-list a {
    color: #1a6dd4;
    text-decoration: none;
    font-weight: 500;
}

.project-list a:hover {
    text-decoration: underline;
}

.project-desc {
    color: #666;
    font-size: 0.9rem;
}

footer {
    max-width: 600px;
    margin: 4rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

