body{
    display: flex;
    justify-content: center;
    height: 100vh;
    height: 100vh;
    align-items: center;
    background: linear-gradient(rgb(232, 232, 236), rgb(76, 109, 81));
    margin: 0;
        font-family: 'Poppins', sans-serif;
}

p{
    margin-top: -10px;
}

img{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid black;
}

.profile-card{
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 2px 20px 
    black;
    transition: transform 0.9s ease;
}

.profile-card:hover{
    transform: translateY(-10px);
}
.social-links{
  margin-top: 15px;
}
.social-links a {
    text-decoration: none;
    display: inline-block;
}
.social-links a img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.social-links a img:hover {
    transform: scale(1.2);
    opacity: 0.8;
}
