.profile-wrapper {
    display: flex;
    float: left;
    padding: 0 15px;
    justify-content: center;
    align-items: center;
    height: 30em;
}

.profile-box h2 {
    font-weight: 600;
}

.profile-box h3 {
    margin-bottom: 0;
    font-size: 1.4rem;
}

.profile-box {
    position: relative;
    background-color: #947b60;
    color: white;
    text-align: center;
    padding: 60px 20px 80px;
    width: 18em;
    height: 20em;
    border-radius: 15px;
    box-shadow: -1px 1px 26px -1px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: -1px 1px 26px -1px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: -1px 1px 26px -1px rgba(0, 0, 0, 0.5);;
}

.center-profilbox {
    padding-left: 20%;
}

.profile-image {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #947b60;
    background-color: white;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-badge {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
}

.profile-badge img {
    width: 100%;
    height: 100%;
}