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

body {
    font-family: "larken", sans-serif;
    line-height: 1.5;
    color: #000;
    background-color: #f5f5f5;
    font-size: 16px;
    font-weight: 100;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 840px;
    margin: 0 auto;
    padding: 80px 32px;
    min-height: 100vh;
    text-align: center;
}



/* About Section */
.about {
    margin-bottom: 56px;
    text-align: center;
}

.signature-image {
    margin-bottom: 32px;
}

.signature-image img {
    width: 100px;
    height: auto;
}

p {
    font-size: 48px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 24px;
    font-weight: 300;
}

.about p:last-child {
    margin-bottom: 0;
}

/* Work, Side Projects, and Elsewhere Sections */
.work, .side-projects, .elsewhere {
    margin-bottom: 48px;
    text-align: center;
}

.work:last-child, .side-projects:last-child, .elsewhere:last-child {
    margin-bottom: 0;
}
h1 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1.1;
}

h2 {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.work-list, .side-projects-list, .elsewhere-list {
    list-style: none;
    text-align: center;
}

.work-list, .side-projects-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.work-list li, .side-projects-list li {
    font-size: 16px;
    color: #000;
    margin-bottom: 0;
    padding-left: 0;
    font-weight: 400;
    display: block;
}

.work-list a {
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.work-list a:hover {
    color: #666;
}

.side-projects-list a {
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 2px solid #000;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.side-projects-list a:hover {
    color: #666;
    border-bottom-color: #666;
}

.elsewhere-list li {
    font-size: 16px;
    color: #000;
    margin-bottom: 12px;
    padding-left: 0;
    font-weight: 400;
    display: inline-block;
}

.work-list li:last-child, .elsewhere-list li:last-child {
    margin-bottom: 0;
}

/* Links */
.elsewhere-list a {
    color: #000;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    margin: 0 8px;
}

.elsewhere-list a:hover {
    color: #666;
}

.elsewhere-list a:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 60px 24px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 16px;
    }
    
    p {
        font-size: 20px;
    }
    
    .signature-image img {
        width: 80px;
        height: auto;
    }
    
    h3 {
        font-size: 18px;
    }
    
    .work-list li, .side-projects-list li, .elsewhere-list li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 40px 20px;
    }
    

    
    .about {
        margin-bottom: 40px;
    }
    
    .work, .side-projects, .elsewhere {
        margin-bottom: 40px;
    }
} 