body{
    font-family: Arial, sans-serif;
    background-color: rgb(160, 160, 179);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.card{
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px white;
    overflow: hidden;
    width: 300px;
    text-align: center;
    position: relative;
}

.card-header{
    background: #4071f4;
    height: 100px;
}

.profile-img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #4071f4;
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
}

.card-body{
    margin-top: 60px;
    padding: 0 20px;
}

.title{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 4px;
}

.subtitle{
    font-size: 14px;
    color: gray;
}

.socials{
    margin: 15px 0;
}

.socials a{
    font-size: 22px;
    margin: 0 8px;
    text-decoration: none;
    transition: color 0.3 ease;
}

.socials a:nth-child(1) i{
    color: blue;
}

.socials a:nth-child(2) i{
    color: black;
}

.socials a:nth-child(3) i{
    color: red;
}

.socials a:hover{
    color: #3b82f6;
}

.message-btn{
    background: #4070f6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 15px;
    transition: background 0.3s ease;
}

.message-btn:hover{
    background: #2563eb;
}