body{
   background-color:rgb(20 20 20) ;
   position: relative;
   font-family: Arial, Helvetica, sans-serif;
   box-sizing: border-box;
}
.profile-card{
    width: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform:translate(-50%, 50%); 
    background-color: rgb(31 31 31);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    gap: 2px;
    flex-wrap: wrap;
    align-items: center;
}
@media (max-width: 400px) {
    .profile-card {
        width: 90%;
    }
}

.profile-card  img{
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin-top: 8px;
}
.place{
    color: rgb(193 222 101);
}
.name{
    color:white;
}
.skills{
    color: white;
    font-size: 14px;
}
.profile-card div{
    color: white;
    text-align: center;
}
.links{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 20px);
}
.social-link{
    width: calc(100% - 20px);
    color: white;
    text-decoration: none;
    margin: 5px 0;
    font-size: 14px;
    background-color: rgb(51 51 51);
    border-radius: 4px;
    padding:8px;
    transition: all 0.3s ease;
    
    
}
.name {
    color: white;
    font-size: 18px;
    margin: 6px 0; 
}

.place {
    color: rgb(193, 222, 101);
    font-size: 14px;
    margin: 6px 0;
}

.skills {
    color: white;
    font-size: 12px; 
    margin: 18px 0 10px 0px; 
}

.social-link:hover{
    color:rgb(193, 222, 101);
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}
