body {
    background: url("/assets/img/fond.png") no-repeat fixed;
    background-size: 100% 100%;
}

.containerscenario,
.containeramis {
    display: flex;
    width: 90%;
    flex-wrap: wrap;
    margin: 25px auto;
    position: relative;
    padding: 10px;
    justify-content: center;
}

.containerscenario {
    &::before {
        content: "";
        position: absolute;
        left: 5%;
        top: 0;
        height: 1px;
        width: 90%;
        border-bottom: 1px solid orange;
    }

    &::after {
        content: "";
        position: absolute;
        left: 5%;
        bottom: 0;
        height: 1px;
        width: 90%;
        border-bottom: 1px solid orange;
    }
}

.member-profile-aside {
    position: sticky;
    top: 50px;
    border-radius: 20px;
    margin-top: 50px;
    box-sizing: border-box;

    h2 {
        padding: 10px 0 5px;
        overflow-wrap: anywhere;
        text-transform: capitalize;
        color: orange;
        margin-bottom: 5px;
    }

    fieldset {
        color: orange;
        border-color: orange;
        border-radius: 10px;
    }

    form {
        margin: 10px 0;
    }
}

.member-profile-aside .portraitavatarcompte {
    width: min(180px, 90%);
    aspect-ratio: 1;
    height: auto;

    img {
        width: 100%;
        height: 100%;
    }
}

.member-since {
    text-align: center;
    font-size: 0.7rem;
}

.member-profile-aside .containeramis {
    width: 100%;
    margin: 10px auto 20px;
    padding: 0;
    gap: 8px;

    img {
        width: 58px;
        height: 58px;
        margin: 4px;
    }
}

.member-achievements {
    margin-top: 50px;
    background: none;
}

.member-achievements h1,
.member-achievements h2 {
    color: orange;
    text-transform: uppercase;
    font-size: 22px;
}

.containeramis {
    p {
        text-align: center;
        color: white;
        width: 100%;
    }

    img {
        width: 100px;
        height: 100px;
        overflow: hidden;
        border-radius: 50%;
        object-fit: cover;
        margin: 10px;
    }
}

.containerprog {
    position: relative;
    width: 60%;
    height: 20px;
    outline: 1px solid orange;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    margin: 10px auto 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

    p {
        color: white;
        margin: 0;
        z-index: 1;
    }
}

.banniereprogression {
    position: absolute;
    height: 100%;
    left: 0;
    background: orange;
}

.portraitavatarcompte {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    margin: auto;

    img {
        width: 200px;
        height: 200px;
        object-fit: cover;
    }
}

