/* minimal monospace design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    filter: grayscale(100%);
}

h1 {
    font-size: 24px;
    font-weight: normal;
    text-transform: lowercase;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

h2 {
    font-size: 16px;
    font-weight: normal;
    text-transform: lowercase;
    margin-bottom: 1rem;
}

h3 {
    font-size: 14px;
    font-weight: normal;
    text-transform: lowercase;
    margin: 0;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.link-item {
    display: flex;
    gap: 1rem;
}

.label {
    text-transform: lowercase;
    color: #666;
    min-width: 80px;
}

a {
    color: #333;
    text-decoration: none;
    text-transform: lowercase;
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: #666;
}

.articles ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.articles li {
    text-transform: lowercase;
}

.articles a {
    display: block;
    padding: 0.25rem 0;
}

.projects {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.project-description {
    color: #666;
    font-size: 12px;
    text-transform: lowercase;
    margin: 0;
}

/* responsive design */
@media (max-width: 480px) {
    body {
        padding: 1rem;
        font-size: 12px;
    }
    
    .profile-photo {
        width: 160px;
        height: 160px;
    }
    
    .link-item {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .label {
        min-width: auto;
    }
    
    .project-list {
        gap: 1rem;
    }
}
