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

body {
    font-family: 'Berkeley Mono', 'Courier New', Courier, monospace;
    line-height: 1.6;
    color: #000;
    background-color: #fafaf8;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

header {
    margin-bottom: 3rem;
}

header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

header p {
    font-size: 1rem;
}

section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.experience-item, .education-item {
    margin-bottom: 2rem;
}

.experience-item:last-child, .education-item:last-child {
    margin-bottom: 0;
}

.experience-item h3, .education-item h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: normal;
}

.meta {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.interests {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.interest-tag {
    font-size: 0.9rem;
}

.interest-tag::after {
    content: ',';
}

.interest-tag:last-child::after {
    content: '';
}

footer {
    margin-top: 3rem;
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.1rem;
}

.nav-links a {
    color: #000;
    text-decoration: none;
}

.nav-links a:hover {
    text-decoration: underline;
}

.back-link {
    color: #000;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #000;
    text-decoration: none;
    font-size: 1rem;
}

.social-link:hover {
    text-decoration: underline;
}

.social-link svg {
    flex-shrink: 0;
}

a {
    color: #000;
}

a:hover {
    text-decoration: underline;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto 3rem auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    body {
        padding: 2rem 1rem;
    }
    
    .hero-image {
        margin: 0 0 2rem 0;
    }
}
