background: linear-gradient(135deg, #181818 80%, #00ffe7 100%);
border-radius: 12px;
box-shadow: 0 4px 24px rgba(0, 255, 231, 0.08);
padding: 24px 16px;
margin-bottom: 32px;
position: relative;

}
.section.social h2 {
    color: #ff00a6;
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.section.social p {
    color: #bdbdbd;
    font-size: 1.05rem;
    margin-bottom: 18px;
}
.section.social .social-link {
    background: #222;
    border-radius: 50%;
    padding: 12px;
    margin: 0 10px;
    font-size: 2rem;
    color: #00ffe7;
    box-shadow: 0 2px 8px rgba(0, 255, 231, 0.08);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: inline-block;
}
.section.social .social-link:hover {
    background: #ff00a6;
    color: #fff;
    transform: scale(1.1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    background-color: #111;
    color: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}
.container {
    max-width: 700px;
    background: #181818;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.32);
    padding: 32px;
    animation: fadeIn 1.2s ease-in-out;
}
.profile-pic {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 24px rgba(0, 255, 231, 0.18);
    border: 4px solid transparent;
    background-image: linear-gradient(135deg, #00ffe7 0%, #ff00a6 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    padding: 4px;
}

/* For browsers that support double backgrounds */
.profile-pic {
    background: linear-gradient(135deg, #00ffe7 0%, #ff00a6 100%) border-box;
    border: 4px solid transparent;
}

}
.profile-pic:hover {
    transform: scale(1.05);
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #00ffe7;
}
h1 span {
    color: #00ffe7;
}
p.description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #bdbdbd;
}
.section {
    margin-bottom: 30px;
    background: #222;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
a.social-link {
    margin: 0 12px;
    color: #00ffe7;
    font-size: 1.7rem;
    transition: color 0.2s;
}
a.social-link:hover {
    color: #ff00a6;
    transform: translateY(-3px);
}
.contact-info p {
    margin: 10px 0;
    color: #00ffe7;
    font-size: 1.15rem;
    font-weight: 500;
    background: #181818;
    border-radius: 6px;
    padding: 10px 18px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 255, 231, 0.08);
    transition: background 0.2s,
    color 0.2s;
}
.contact-info p:hover {
    background: #222;
    color: #ff00a6;
}

}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    .profile-pic {
        width: 120px;
        height: 120px;
    }
}