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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #0a0a0a;
    color: #fafafa;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
}

main {
    text-align: center;
    padding: 2rem;
}

.ascii-logo {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    white-space: pre;
    display: inline-block;
    text-align: left;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

p {
    font-size: 1.25rem;
    color: #888;
    margin-bottom: 2rem;
}

a {
    color: #fafafa;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid #333;
    border-radius: 6px;
    transition: all 0.2s ease;
}

a:hover {
    background-color: #fafafa;
    color: #0a0a0a;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-links a {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.divider {
    border: none;
    border-top: 1px solid #333;
    margin: 3rem auto;
    width: 80%;
    max-width: 400px;
}

.projects {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.project {
    text-align: left;
    padding: 1.5rem;
    border: 1px solid #222;
    border-radius: 8px;
}

.project h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project p {
    font-size: 1rem;
    color: #888;
    margin-bottom: 0;
}
