body{
    font-family: Arial,sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;

}

.card{
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    width: 300px;
}

.profile-img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
   
}

button{
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background-color: blue;
    color: white;
    cursor:pointer;
    font-size: 16px;

}

button:hover{
    background-color: green;
}