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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

main {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.about {
    color: #6b7280;
    margin-bottom: 1rem;
}

.work {
    color: #374151;
    margin-bottom: 2rem;
}

.contact {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border: 2px solid #2563eb;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.contact:hover {
    background: #2563eb;
    color: white;
}

footer {
    margin-top: 3rem;
    color: #9ca3af;
    font-size: 0.875rem;
}
