    body,
    html {
        margin: 0;
        padding: 0;
        height: 100%;
    }
    .user_card {
        height: 400px;
        width: 350px;
        margin-top: auto;
        margin-bottom: auto;
        background: #96D952;
        position: relative;
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding: 50px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        border-radius: 5px;

    }
    .brand_logo_container {
        position: absolute;
        height: 130px;
        width: 130px;
        top: -75px;
        border-radius: 50%;
        background: #44E1F2;
        padding: 10px;
        text-align: center;
    }
    .brand_logo {
        height: 110px;
        width: 110px;
        border-radius: 50%;
        border: 2px solid white;
    }

    .col-12 button{
        font-weight: bold;
        border: none;
        padding: 10px;
        background-color: #F29B30;
        position: absolute;
        margin-top: 30px;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 50%;
        transition: ease-in-out 1s;
    }

    .col-12 button:hover{
        transition: ease-in-out 1s;
        background: #F24822;
    }
