*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Inter';
    src: url('./fonts/static/Inter-Regular.ttf') format('truetype');
    font-weight: 400; /* وزن معمولی (Regular) */
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('./fonts/static/Inter-Bold.ttf') format('truetype');
    font-weight: 700; /* وزن بولد (Bold) */
    font-style: normal;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #141414;
    font-family: 'Inter';
    
}
.card{
   background-color: #1f1f1f;
    width: 380px;
    height: 600px;
    border: 1px solid #111;
    border-radius: 15px;
}
.profilePic img{
    display: block;
    border-radius: 50%;
    width: 80px;
    margin: auto;
    margin-top: 40px
}
.UserInfo{
    text-align: center;
    margin:  30px 0;
    font-weight: 400;
}
.UserInfo h2{
color: #ffff;
margin: 10px 0 ;
}
.UserInfo h4{
 color: #afd04d;   
 margin: 10px 0 ;
}
.UserInfo p{
    margin-top: 30px;
    color: #ffff;
}
.btnContoroller{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}
.btn{
    border-radius: 10px;
    width: 80%;
    background-color: #333333;
    color:#ffff;
    padding: 15px;
    border: none;
    font-weight: 700;
}

.btn:hover{
    background-color: #afd04d;
    color: #1f1f1f;
    cursor: pointer;
    transition: 500ms;
}
btnContoroller .btn:last-child {
    margin-bottom: 20px; 
}