.profile-content {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 200px auto;
}

.user-details-body {
    position: relative;
    width: 50%;
    height: 700px;
    left: 0;
    right: 0;
    margin: auto;
    padding: 3%;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, .6);
}

.user-details-body::after {
    content: "";
    border-radius: 10px;
    padding: 2px;
    inset: 0;
    position: absolute;
    background: linear-gradient(45deg, #ff5424, transparent 50%, #ff5424);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -98888;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
    display: flex;
    margin: 0 auto 50px;
}

.profile-name,
.profile-username,
.profile-email {
    width: 70%;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.profile-change-link {
    position: absolute;
    width: 200px;
    text-align: center;
    padding: 1% 2%;
    background-color: #009414;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 5%;

}

.profile-change-link:active {
    transform: scale(.9);
}

.profile-card {
    position: relative;
    width: 350px;
    height: auto;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 10px;
}

.user-avatar i {
    font-size: 5rem;
}

.profile-card-detail-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 3px;
    z-index: 9999;
}

.profile-card-detail-item h3 {
  font-family: 'KalamehSemiBold';
  color: #ff5424;
}

.profile-card-detail-item h5 {
  font-family: 'KalamehLight';
  margin-right: 5%;
  text-align: left;
}