body{
    background-color: #232020;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#profile-card{
    background-color: #fff;
    
    border-radius: 8px;
    width: 250px;
    text-align: center;
    padding: 20px; 
    box-shadow: 0 0 10px 0 #00000066;
    position: relative;

}
#profile-card img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 0 10px 0 #00000066;
}
button{
    background-color: #f31873;
    color: white;
    padding: 10px 20px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: inset 0 0 10px 0 #00000066;
}
#profile-card #loader{
    display:flex ;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 10; 
    background-color: #00000054;
    height: 100%;
    width: 100%;
    
}

/*responsiveness*/
@media (max-width: 600px) {
    #profile-card{
        width: 90%;
        padding: 10px;
    }
    #profile-card img{
        width: 80px;
        height: 80px;
    }
    button{
        width: 100%;
        padding: 10px;
    }
}
