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

body {
    font-family: 'Funnel Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: white;
    color: #000;
    line-height: 1.5;
    padding: 2rem;
}

.container {
    max-width: 650px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Profile image */
.profile-image {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.bio {
    margin-bottom: 3rem;
}

.bio p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Social links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #000;
    transition: opacity 0.2s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }

    .container {
        padding: 1rem 0.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    .bio p {
        font-size: 1rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }
} 