body{
    color: #27322B;
}
.grad{
    background-color: #a5d1a96b;
    padding-bottom: 3vh;
    padding-top: 1vh;
}
h1{
    color: #067302;
    text-align: center;
}

h4{
    text-align: center;
    font-size: 19px;
    color: #27322B;
    border-bottom: 2px solid #067302;
    border-top: 2px solid #067302;
}

#intro{
    width: 65%;
    margin: auto;
    margin-top: 10vh;
}

#tableau{
    width: 90%;
    margin: auto;
    margin-top: 5vh;
    margin-bottom: 5vh;
    display: grid;
    
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 2vh;
    row-gap: 5vh;
}

.carte{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 2vh;
    padding: 2vh;
}

.carte li{
    list-style-type: none;
    padding: 1vh;
}

.carte li::before{
    content: '';
    background-image: url('./images/puce_rouge.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-flex;
    margin-right: 10px;
    width: 12px;
    height: 12px;
}

#A ul{
    margin-top: 10vh;
}

#partenaire{
    text-align: center;
}

@media screen and (max-width: 640px){
    body{
        width: 100%;
        padding: 0;
        border-radius: 0px;
        font-size: 14px;
        text-align: justify;
    }
    #intro{
        width: 80%;
    }

    #tableau{
        grid-template-columns: 1fr;
    }

    #A ul{
        margin-top: 0;
    }

}