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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    padding: 2rem;
}

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

header {
    margin-bottom: 3rem;
}

.title-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 4px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.work p,
.posts p {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

ul {
    list-style: disc;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    color: #333;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Posts section */

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
} 