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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #2a2a2a;
    color: #e8e8e8;
    line-height: 1.8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin: 0;
}

main {
    text-align: left;
    max-width: 600px;
    width: 100%;
}

.greeting {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e8e8e8;
}

.name {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #e8e8e8;
}

.bio {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #e8e8e8;
}

.work {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #e8e8e8;
}

.links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.links a {
    display: inline-flex;
    align-items: center;
    color: #e8e8e8;
}

.links svg {
    width: 20px;
    height: 20px;
}

.separator {
    color: #e8e8e8;
}

.underline {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a {
    color: #e8e8e8;
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.6;
}

@media (max-width: 600px) {
    body {
        padding: 1.5rem;
    }
    
    .greeting,
    .name,
    .bio,
    .work {
        font-size: 1.25rem;
    }
}
