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

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.8;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    margin-bottom: 60px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    font-weight: normal;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.tagline {
    font-size: 0.95em;
    color: #666;
}

section {
    margin-bottom: 45px;
    flex: 0 0 auto;
}

section.bio {
    margin-bottom: 50px;
}

section.links {
    margin-bottom: 0;
}

section h2 {
    font-size: 1em;
    font-weight: normal;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #1a1a1a;
}

section p {
    font-size: 0.95em;
    line-height: 1.8;
    color: #333;
}

ul {
    list-style: none;
}

li {
    margin-bottom: 10px;
}

a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    transition: opacity 0.2s ease;
    font-size: 0.95em;
}

a:hover {
    opacity: 0.6;
}

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

    header h1 {
        font-size: 1.8em;
    }

    section h2 {
        font-size: 0.9em;
    }
}
