nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: #212121;
    padding: 10px 0px;
	position: fixed;
	top: 0;
}
nav .menu {
    display: flex;
    align-content: center;
    align-items: center;
}
nav li {
    margin-left: 30px;
    list-style-type: none;
}
nav li a {
    color: white;
    text-decoration: none;
    padding: 10px;
}
nav li a:hover {
    background-color: white;
    color: #212121;
    border-radius: 20px;
}
nav .compte {
    margin-right: 30px;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
}
nav .compte .infos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: center;
}
nav .compte .infos .pdp {
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 100px;
}
nav .compte p {
    margin: 0px;
    color: white;
}
nav #bouton-deco {
    padding: 10px;
    width: 100px;
    text-align: center;
    background-color: #ee5253;
    text-decoration: none;
    color: white;
    border-radius: 20px;
}
nav #bouton-deco:hover {
    background-color: white;
    color: #212121;
}
