* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Without prefixes */
.box {
    display: flex;
    transition: all 0.3s ease;
}

/* With prefixes */
.box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* profile delete button styling*/

.btn-delete {
    margin-top: 10px;
    width: 100%;
}

