/* .card {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(50px);
}

.card__wrapper {
    height: 400px;
    padding: 20px;
    max-width: 300px;
    width: 100%;
    background: white;
    box-shadow: 0px 0px 62px 0px rgba(0, 0, 0, 0.22);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.card__user-img{
    border: 2px solid #2c5eff;
    height: 70px;
    width: 70px;
    margin: 2rem 0 1.5rem;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.card__info {
    margin-bottom: 2rem;
}

.card__name{
    text-align: center;
    display: block;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.card__title{
    display: block;
    font-size: .7rem;
    margin-bottom: 2rem;
    text-align: center;
}

.card__icon {
    width: 200px;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid black;
    margin-bottom: .4rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background .3s ease-in-out, color .3s ease-in-out;
    cursor: pointer;
}

.card__icon-box{
    width: 25px;
    display: inline-block;
    text-align: center;
    display: flex;
    align-items: center;
}
.card__icon-title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.card__icon--fb{
    color: #2c5eff;
    border: 1px solid #2c5eff;
}
.card__icon--fb:hover{
    background: #2c5eff;
    color: white;
}
.card__icon--ig{
    color: #773fe7;
    border: 1px solid #2c5eff;
}
.card__icon--ig:hover{
    background: #773fe7;
    color: white;
}
.card__icon--db{
    color: #f962b1;
    border: 1px solid #f962b1;
}
.card__icon--db:hover{
    background: #f962b1;
    color: white;
} */
