.about{
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 5rem;
    
}

.about-content{
    display: flex;
    align-items: center;
    gap:3rem;
    margin-top: 2rem;
    margin-bottom: 5rem;
}
.profile-pic{
    width: 200px;
    border-radius:50%;
}
.skills{
    margin-top: 5rem;
    background: #f9f9f9;
    padding: 2rem;  
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}
.skills ul{
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin-top: 1rem;
    text-align: center;
}

img:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease;
}