.entete{
    background-color: #2b3035;
}
.titre{
    padding: 0px;
    background-color: white;
}
.barre-menu{
    background-color: #2b3035;
    margin: 0px;
    padding: 0px;
}
.menu{
    text-align: center;
}

.barre-menu .onglet:hover {
    background-color: RGBa(255,255,0,0.15);
}
.barre-menu .onglet {
    transition-duration: 0.5s;
    transition-property: background-color;
}
.onglet{
    margin: 0px;
    padding-top: 42px;
    text-align: center;
    font-size: 20px;
}
.onglet a{
    text-decoration: none;
    color: lightgray;
}
.panier{
    width: 60px;
    margin-left: 216px;
    background-color: RGB(211 , 211 , 211);
    padding: 6px;
    border-radius: 14px;
    margin-left: 190px;
    margin-bottom: 10px;
}

.panier:hover{
    background-color: RGBa(211 , 211 , 211,0.15);
}
.barre-menu .panier{
    transition-duration: 0.5s;
    transition-property: background-color;
}
@keyframes rouequitourne {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }

}
.roue{
    width: 165px;
    animation: rouequitourne 1s linear infinite;
}
.roue:hover{
    animation: rouequitourne 0.2s linear infinite;
}
.GRC{
    font-size: 50px;
}
