h1{
    text-align: center;
    color: #067302;
}

h2{
    width: 70%;
    margin: auto;
    margin-bottom: 5vh;
}

h3{
    font-size: 21px;
    border-bottom: 2px solid #992621;
}

.green{
    background-color: #a5d1a96b;
    padding-bottom: 5vh;
    padding-top: 5vh;
}

#A{
    background-color: #fff;
    width: 60%;
    margin: auto;
    padding: 2vh;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
}

#A h4{
    width: fit-content;
    margin: auto;
    padding-bottom: 1vh;
    font-size: 18px;
    text-align: center;
    border-bottom: 2px solid #067302;
}


#A h4::before{
    content: '';
    background-image: url('./images/puce_vert.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-flex;
    margin-right: 10px;
    width: 14px;
    height: 14px;
}

#A_grid{
    display: grid;
    grid-template-columns: 1fr 2fr;
}

#ordi{
    display: flex;
    margin: auto;
}

#A li{
    list-style-type: none;
    padding: 1vh;
}

#A li::before{
    content: '✔';
    color: #992621;
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 1px;
    border: 2px solid;
    border-radius: 50%;
    margin-right: 1vh;
}

#B_titre{
    margin-top: 5vh;
}

#B_grid{
    display: grid;
    grid-template-columns: 2fr 1fr;
}

#calendrier{
    display: flex;
    margin: auto;
    width: 208px;
}

.carte{
    background-color: #fff;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    padding: 2vh;

}

.carte li{
    list-style-type: none;
}

.carte li::before{
    content: '';
    background-image: url('./images/puce_vert.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-flex;
    margin-right: 10px;
    width: 13px;
    height: 13px;
}

#planning{
    width: 70%;
    margin: auto;
    margin-bottom: 5vh;
}
#B_grid_a{
    width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 3vh;
}
#B_grid_b{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3vh;
}

#B_grid_b{
    margin-top: 5vh;
    margin-bottom: 5vh;
}
#sec_fin{
    overflow: hidden;
}

#portal, #chip{
    display: flex;
    margin: auto;
}

@media screen and (max-width: 640px){
    h2{
        width: 85%;
    }
    h3{
        font-size: 18px;
    }
    #A{
        width: 85%;
    }

    #A li, #B_grid li, #B_grid_a li, #B_grid_b li{
        margin-left: -10%;
    }

    #A h4{
        font-size: 16px;
    }

    #A_grid{
        grid-template-columns: 1fr;
    }

    #planning{
        width: 85%;
    }

    #B_grid{
        grid-template-columns: 1fr;
    }

    #B_grid_a, #B_grid_b{
        grid-template-columns: 1fr;
        row-gap: 2vh;
    }
}