h4 {
    color: white;
    margin: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.section_1 {
    width: 90%;
    height: auto;
}

.s1-moyenne {
    width: 100%;
    text-align: center;
    color: white;
    font-weight: bolder;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

#nbMoyenVoyageurs {
    font-weight: bolder;
    font-size: 3rem;
    padding: 0.5rem 1rem;
    background-color: var(--light-color);
    color: var(--dark-color);
    border-radius: 2rem;
    box-shadow: 0px 0px 15px 6px rgba(0,0,0,0.1);
}

#graphique1 {
    width: 100%;
    height: 16rem;
}

.section_2 {
    background-color: var(--light-color);
    height: 12rem;
    width: 90%;
    border-radius: 2rem;

    box-shadow: 0px 0px 15px 6px rgba(0,0,0,0.1);
    
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: var(--dark-color);
}

.section_3 {
    width: 100vw;
    display: flex;
    flex-direction: column;
}

.section_2 span:nth-child(2) {
    margin: 1rem 0;
    display: none;
}

#nbRetardsGlobal {
    font-size: 1.75rem;
}



#graphique3 {
    margin-bottom: 8rem;
}


.podium {
    width: 100%;
    margin-bottom: 8rem;
    padding: 0 0.5rem;

    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 0.5rem;
}

.podium div {
    display: flex;
    flex-direction: column;
    width: 20%;
    overflow:hidden;
}

.place1 span:first-child, .place2 span:first-child, .place3 span:first-child, .place4 span:first-child, .place5 span:first-child {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bolder;
}

.place1 {
    background-color: #F59BBB;
    height: 14rem;
}

.place2 {
    background-color: #D188AB;
    height: 12rem;
}

.place3 {
    background-color: #AC759B;
    height: 10rem;
}

.place4 {
    background-color: #88618B;
    height: 8rem;
}

.place5 {
    background-color: #634E7B;
    height: 6rem;
}

.indicateur {
    font-size: 0.75rem;
    text-overflow: ellipsis;
    text-wrap:balance;
}

.place1, .place2, .place3, .place4, .place5 {
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
    text-align: center;
    color: white;
}