*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Be Vietnam Pro", sans-serif;
    
}
body
{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(photos/background.jpg) no-repeat center center fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;

}
.card
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 90%;
    max-width: 300px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.03);
    border: 4px solid rgba(255, 255, 255, 0.2);
    padding: 4rem 3rem;
    color: #f1f3f3;
    border-radius: 13px;
    backdrop-filter: blur(20px);
    box-shadow: 22px 22px 50px rgba(0, 0, 0, 0.1),
    -22px -22px 50px rgba(0, 0, 0, 0.1);
    z-index: 2;
}
.card .imgBx 
{
    width: 175px;
    height: 175px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.3);
    margin-top: -20px;
}
.card .imgBx img
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    object-fit: cover;
    width: 100%;
}
.card .profile-name
{
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
}
.card .profile-actions
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
   
}
.card .profile-actions > *
{
    margin: 0 0.25rem;

}
.btn
{
    background-color: transparent;
    height: 46px;
    border: 0;
    cursor: pointer;
    line-height: 1;
    transition: 0.15s ease;
    display: flex;
    justify-content: center;
    align-items: center;   
}
.btn-icon
{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);

}
.btn-icon i
{
    font-size: 22px;
    
}

.btn-icon:hover
{
    border: 3px solid #ffffff;
}

.fa {
    text-decoration: none;
    color: #000;  
}
.user-handle{
   
    font-size: 20px;
    margin-top: 10px;
}
a{
    text-decoration: none;
}
.card .arrow
{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.0rem; 
    margin-bottom: -8px;
}
.btn2{
    margin-left: 65px;
    font-size: 30px;
    
}
.btn1{
    margin-right: 40px;
    font-size: 30px;   
}
h6{
    position: absolute;
    font-size: small;
    bottom: 15px;
    margin-left: 170px;
    color: #000;
    cursor: pointer;

    
}
span{
    position: absolute;
    color: black ;
    font-size: 25px;
    margin-top: -9px;
    margin-left: 2px;
 
}
span:hover{
    color: #ED213A ;
    cursor: pointer;
}


@media (max-width: 700px )  {  
    span{
     display: none;
    }
 
    .card{
     margin-bottom: 50px;
    }
    
 }
 

