/* Css pour la navBar : */
.navBar {
    display : flex;
    flex-direction: column;
    justify-content: left;
    position:fixed;
    height: 100%;
    width: 20%;
    background-color:cornflowerblue;
    color: whitesmoke;
}

.box_photo {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.photo_profil {
    display: flex;
    justify-content: center;
    border: solid 1px black;
    height: 170px;
    width: 170px;
    border-radius: 50%;
}

.ancreNavBar {
    text-decoration: none;
    color: whitesmoke;
}

.ancreNavBar:hover {
    color: orangered;
    text-decoration: underline;
}

li {
    list-style-type: none;
    margin-bottom: 20%;
}

.nomPrenomNavBarBox{
    display: flex;
    justify-content: center;
}

.nomPrenomNavBar {
    color: orangered;
}