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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    color: #333;
}

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

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.1rem;
    color: #666;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.egg {
    color: inherit;
    text-decoration: none;
    cursor: text;
}

.links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    color: #0a66c2;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #0a66c2;
    transition: background 0.2s, color 0.2s;
}

.linkedin-link:hover {
    background: #0a66c2;
    color: #fff;
}

.linkedin-link svg {
    width: 20px;
    height: 20px;
}
