#palmares{
    margin : 0;
    paddin : 0;
    display : flex;
    align-items : center;
    justify-content : center;
    flex-direction : column;
}

.palmares-display{
    width : 100%;
    margin : 0;
    padding : 0;
    display : flex;
    flex-direction : column;
    align-items : center;
    justify-content : center;
}

.palmares-display ul{
    margin : 0;
    padding : 0;
    display : flex;
    flex-wrap : wrap;
    align-items : center;
    justify-content : center;
}

.palmares-display ul li{
    display : flex;
    justify-content : center;
    align-items : center;
    flex-direction : column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin : 1rem;
    border : 2px solid #FFF;
    border-radius : 5px;
}

.palmares-display ul li:hover{
    border-color : #000;
}


.podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 300px;
}

.step {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 10px;
    background-color: #bbb;
    border-radius: 5px;
}

.first {

    height: 300px;
    width: 125px;
    padding : 10px;
    background-color: gold;
}

.second {

    height: 200px;
    width: 125px;
    padding : 10px;
    background-color: silver;
}

.third {
    height: 150px;
    width: 125px;
    padding : 10px;
    background-color: #cd7f32;
}

.step img {
    width: 75px;
    height: 75px;
    margin-bottom: 10px;
}

#histoire{
    margin : 0;
    padding : 0;
    width : 100%;
    display : flex;
    align-items : center;
    justify-content : center;
    flex-direction : column;
}

.histoire-texte{
    margin : 0;
    padding : 0;
    display : flex;
    align-items : center;
    justifyècontent : center;
}

.histoire-display{
    margin : 0;
    padding : 0;
    width : 100%;
    display : flex;
    align-items : center;
    justify-content : center;
}

.histoire-display ul{
    margin : 0;
    padding : 0;
    width : 100%;
    display : flex;
    align-items : center;
    justify-content : center;
}

.histoire-display ul li{
    display : flex;
    flex-direction : column;
    align-items : center;
    justify-content : center;
}

.histoire-display ul li p{
    text-align : justify;
    margin : 1rem 0;
    line-height : 1em;
    font-size : 1rem;
}


.histoire-display ul li figure img{
    border-radius : 5px;
    object-fit : cover;
}

@media screen and (max-width : 60rem){
    .histoire-display ul{
        flex-wrap : wrap;
    }
}
@media screen and (max-width : 40rem){
    .histoire-display ul{
        flex-direction : column;
    }
}