/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {   
    width: 100%;
}

main {
    text-align: left;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: #fff;
}

h1 {
    font-size: 5.5rem;
    font-weight: 100;
    margin-bottom: 8px;
    color: #222;
}

.bio {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 800;
}

.links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.links a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.links a:hover {
    color: #666;
}

/* Responsive design */
@media (max-width: 600px) {
    main {
        padding: 40px 20px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .bio {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .links {
        flex-direction: column;
        gap: 16px;
    }
    
    .links a {
        font-size: 0.95rem;
    }
}
