body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;

    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #2d3748;
    margin: 0 0 1rem 0;
}

.bio {
    margin-bottom: 2rem;
}

.interests {
    background: #f8f9fa;
    padding: 1.5rem;
    padding-top: 0.1rem;
    padding-bottom: 0.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #4a5568;
    padding: 0.5rem 1rem;
    background: #edf2f7;
    border-radius: 6px;
    transition: all 0.2s;
}

.social-links a:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}