/* .card {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(50px);
}
.card__wrapper {
    padding: 20px 30px 3rem 20px;
    max-width: 300px;
    width: 100%;
    background: white;
    box-shadow: 0px 0px 62px 0px rgba(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: .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 #000;
    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;
    justify-content: center;
    align-items: center;
}
.card__icon-title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: inherit;
}
.card__icon--git{
    color: #171515;
    border: 1px solid #171515;
}
.card__icon--git:hover {
    background: #171515;
    color: white;
}
.card__icon--ln {
    color: #0072b1;
    border: 1px solid #0072b1;
}

.card__icon--ln:hover {
    background: #0072b1;
    color: white;
}
.card__icon--lc{
    color: #638a9e;
    border: 1px solid #638a9e;
}

.card__icon--lc:hover {
    background: #638a9e;
    color: white;
} */