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

body {
    font-family: 'Newsreader', serif;
    line-height: 1.6;
    color: #000;
    background-color: #FFF0F3;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

header {
    text-align: center;
    margin-bottom: 4rem;
}

h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    font-weight: 300;
}

section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 300;
}

a {
    color: #000;
    text-decoration: underline;
    transition: color 0.2s ease;
}

a:hover {
    color: #333;
}

strong {
    color: #000;
    font-weight: 400;
}

.project {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.project p {
    font-style: italic;
    margin-bottom: 0.25rem;
}

.journal {
    font-size: 0.85rem;
    font-style: normal !important;
    color: #000;
    margin-top: 0;
    margin-bottom: 0;
}

.project:last-child {
    border-bottom: none;
}

.about p {
    max-width: 600px;
}

.social-icons {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.social-link {
    display: inline-block;
    margin: 0 1rem;
    color: #000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: #333;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
}