@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #1b1b1b;
    color: #ffffff;
    text-align: center;
}

.container {
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

header {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.profile img {
    width: 200px;
    border-radius: 50%;
    margin: 20px 0;
    border: 4px solid #ffffff;
    transition: transform 0.3s ease-in-out;
}

.profile img:hover {
    transform: scale(1.1);
}

.about {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 20px;
    margin-top: 20px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.skill {
    background: #333;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 400;
}

.contact h2 {
    font-size: 42px;
    margin-top: 20px;
}

/* Updated Social Links Styling */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
    
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: transform 0.3s ease-in-out;
    
}

.social-item img {
    width: 60px; /* Adjusted logo size */
    height: 50px;
    border-radius: 10px;
    margin-bottom: 5px;
    
}

.social-item i {
    font-size: 50px; /* Adjusted font-awesome icon size */
    margin-bottom: 5px;
}

.social-item p {
    margin: 0;
    font-size: 14px;
}

.social-item:hover {
    transform: scale(1.1);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    .skills {
        flex-direction: column;
    }

    .profile img {
        width: 150px;
    }

    .social-item img {
        width: 40px;
        height: 40px;
    }

    .social-item i {
        font-size: 40px;
    }
}
