@media(max-width:600px)
{
    #profile_image{
        width: 125px;
        height: 125px;
    }
    
    #profile_image>img{
        width: 125px;
        height: 125px;
    }

    .user_detail>h4{
        font-weight: normal;
        font-size: small;
    }
    .user_detail>h3{
        font-weight: bold;
        font-size: medium;
    }

    #user_details_container{
        margin:0 15px;
        margin-top: 20px;
        display:grid;
        grid-template-columns: 1fr;
        align-items: center;
        grid-gap: 10px;
    }

    .user_detail{
        display:flex;
        align-items: center;
        justify-content: space-between;
        background-color: #353d49;
        height: 100%;
        border-radius: 10px;
        padding:3px 15px;
        color: white;
    }


    #currency_details_container{
        margin-top: 10px;
    }
    .currency_detail{
        height: 25px;
        margin-top: 5px;
    }

    #currency_details_container>h1{
        font-size: small;
       
    }

    .currency_detail>p{
        font-size: small;
    }

    #transaction_history_button{
        margin-top: 50px;
        margin-left: 15px;
        margin-right: 15px;
    }

    #misc_buttons_container{
        width: 100%;
        row-gap: 6px;
        column-gap: 3px;
        margin: 10px 35px;
    }
    
    #misc_buttons_container>a{
        height: 60px;
        border-radius: 10px;
        background-color: #353d49;
        margin:3px 0;
        color: white;
        width: 30%;
        margin: auto;
    }
    #misc_buttons_container>button{
        height: 60px;
        border-radius: 10px;
        background-color: #353d49;
        margin:3px 0;
        color: white;
        width: 30%;
        margin: auto;
    }

    #qr_icon_container{
        left: calc(50% + 25px);
    }

  
    
}