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

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

.container {
    max-width: 500px;
    width: 100%;
    text-align: center;
}


.profile {
    margin-bottom: 40px;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 3px solid #f0f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.bio {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    max-width: 450px;
    margin: 0 auto 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin: 15px 0 25px;
}

.social-links a {
    color: #333333;
    font-size: 28px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.social-links a svg {
    width: 28px;
    height: 28px;
}

.social-links a:hover {
    color: #0066cc;
    transform: translateY(-2px);
}

.projects {
    margin-top: 50px;
}

.projects h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.project-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.project-link:hover {
    background-color: #f0f0f0;
    color: #0052a3;
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
    }
    
    .profile {
        margin-bottom: 30px;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    .bio {
        font-size: 16px;
        max-width: 300px;
    }
    
    .social-links {
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .social-links a {
        font-size: 24px;
    }
    
    .projects {
        margin-top: 40px;
    }
    
    .projects h2 {
        font-size: 20px;
    }
    
    .project-link {
        font-size: 16px;
        padding: 8px 16px;
    }
}