.div-profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100%;
    transform: translateX(100%);
    background-color: var(--brown);
    transition: transform 0.5s ease-in-out;
    box-shadow: 0 0 20px 0 var(--background);
    opacity: 0.98;

}

.div-profile-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 10vh;
}

.img-profile-close {
    width: 3vw;
    cursor: pointer;
    margin-right: 2vw;
}

.p-profile-title {
    font-size: 1.5vw;
    font-weight: bold;
    margin-left: 2vw;
    color: var(--white);
}

.div-profile-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80vh;
    color: var(--white);
    font-size: 1.5vw;
    font-weight: bold;
}

.div-profile-bottom-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 10vh;
    color: var(--white);
}

.name-input {
    background-color: var(--brown);
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 10000px;
    padding: 1vw 2vw;
    font-size: 1.5vw;
    font-weight: bold;
    margin-left: 2vw;
}
