h1 {
    margin: 100px auto 25px;
    font-size: 50px;
    text-align: center;
}

h1 + p{
    margin: 25px auto 25px;
    text-align: center;
}

.utilisateur{
    margin: 5px auto;
    display: flex;
    flex-direction: row;
    width: 70%;
    height: 120px;
    justify-content: space-between;
    background-color: rgba(0,0,0,0.2)
}

.palier-separator{
    margin: 40px auto 10px;
    text-align: center;
}

.palier-separator span{
    display: flex;
    align-items: center;
    border-radius: 10px;
    color: var(--role-color);
}

.palier-separator span:before, .palier-separator span:after{
    height: 1px;
    content: "";
    flex: 1 1 auto;
    background-color: var(--role-color);
}

.palier-separator span:before{
    right: 100%;
    margin-right: 8px
}
.palier-separator span:after{
    left: 100%;
    margin-left: 8px
}

.username{
    font-size: 25px;
    overflow: hidden;
}

.username-mobile{
    display: none;
}

.Position{
    font-size: 80px;
    margin-left: 10px;
}

.utilisateur img{
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 10px;
    flex: 0 0 0;
}

.xpinfo {
    display: flex;
    justify-content: space-evenly;
    flex: 1 0 0;
    flex-direction: column;
    max-width: 50%;
    margin-right: 20px;
}

.textxp{
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    flex-direction: row;
}

.progressbarfond{
    position: relative;
    height: 50%;
    background-color: #000;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 50px;
    overflow: hidden;
}

.pourcentagexptext{
    position: absolute;
    width: 100%;
    height: 100%;
    text-align : center;
    line-height: 60px;
    text-shadow: 1px 1px #000, 1px -1px #000, -1px 1px #000, -1px -1px #000;
    top: 0;
    font-size: 25px;
}

.progressbar {
    background-color: #fff;
    height: 100%;
}

.colorline{
    height: 100%;
    width: 5px;
}

.Info-User{
    display: flex;
    flex: 1 1 0;
    align-items: center;
}

.changepage{
    margin-top: 25px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 70%;
    margin: 25px auto 0;
}

.pageactuel, .changepage > a, .changepage > a:focus, .changepage > a:hover{
    font-size: 20px;
    padding: 10px;
    margin: 0 10px;
    border: 1px solid #fff;
    flex : 0 0 0;
    line-height: normal;
    height: 20px;
}

.pageactuel {
    color: #fff;
    font-weight: bold;
}

.changepage form{
    position: absolute;
    right: 5px;
}

.changepage form input{
    width: 50px;
}

main {
    margin-bottom: 100px;
}

@media (max-aspect-ratio: 1/1) {
    .utilisateur, .changepage{
        width: 95%;
        overflow: hidden;
    }

    .username{
        display: none;
    }

    .username-mobile{
        display: block;
    }

    .Info-User{
        flex: unset;
    }

    .xpinfo{
        max-width: unset;
        margin-left: 5px;
        width: 100%;
    }


    .changepage form{
        position: static;
    }


    .Position{
        font-size: 40px;
        margin-left: 10px;
    }

}

@media (max-width: 1250px) {
    .utilisateur, .changepage{
        width: 95%;
    }
}