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

html {
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

main {
    max-width: 560px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

header {
    margin-bottom: 2rem;
}

h1 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

nav {
    display: flex;
    gap: 1.75rem;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

nav a {
    font-size: 1rem;
    font-weight: 450;
    color: #bbb;
    text-decoration: none;
}

nav a:hover {
    color: #fff;
}

section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #999;
    margin-bottom: 1.25rem;
}

ul {
    list-style: none;
}

li {
    margin-bottom: 1.25rem;
}

.project-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.project-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
}

.project-links {
    display: flex;
    gap: 0.6rem;
}

.project-links a {
    font-size: 0.8rem;
    font-weight: 450;
    color: #888;
    text-decoration: none;
}

.project-links a:hover {
    color: #fff;
}

li a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

li a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

li p {
    font-size: 0.95rem;
    font-weight: 400;
    color: #aaa;
    margin-top: 0.3rem;
}

.more {
    font-size: 0.9rem;
    font-weight: 450;
    color: #888;
    text-decoration: none;
}

.more:hover {
    color: #ccc;
}

@media (max-width: 480px) {
    main {
        padding: 4rem 1.5rem 2rem;
    }
    
    nav {
        gap: 1.25rem;
    }
    
    h1 {
        font-size: 1.3rem;
    }
}

::selection {
    background: #444;
}
