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

body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    line-height: 1.6;
    color: #1a1a1a;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.logo {
    font-size: 24px;
    font-weight: normal;
    color: #1a1a1a;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
}

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

main {
    padding-left: 0;
}

h1 {
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 40px;
}

h2 {
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 10px;
}

.bio {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 50px;
}

.section-label {
    margin-bottom: 20px;
}

.links {
    list-style: none;
    margin-bottom: 40px;
}

.links li {
    margin-bottom: 15px;
}

.links a {
    color: #1a1a1a;
    text-decoration: underline;
}

.links a:hover {
    text-decoration: none;
}

.project {
    margin-bottom: 50px;
}

.project h2 a {
    color: #1a1a1a;
    text-decoration: underline;
}

.project-description {
    color: #666;
    margin-top: 10px;
}

.about-section {
    margin-bottom: 40px;
}

.about-section p {
    margin-bottom: 15px;
}

.resume-list {
    list-style: none;
}

.resume-list li {
    margin-bottom: 25px;
}

.dates {
    color: #666;
    font-size: 16px;
}

a {
    color: #1a1a1a;
}

@media (max-width: 600px) {
    body {
        font-size: 18px;
        padding: 20px 15px;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 50px;
    }

    nav {
        gap: 25px;
    }

    .bio {
        font-size: 22px;
    }
}
