body {
    background-color: var(--color-vert);
}
h2 {
    font-family: "Chewy", system-ui;
    font-weight: normal;
    font-size: 31px;
    letter-spacing: 1px;
}
section {
    width: 100%;
    padding: 25px calc(calc(calc(100% - 1500px) / 2) + 15px) 35px calc(calc(calc(100% - 1500px) / 2) + 15px);
}
@media screen and (max-width: 1500px) {
    section {
        padding: 25px 15px 35px 15px;
    }
}
section img {
    display: block;
    max-height: 100%;
    max-width: 100%;
}

.background_green {
    background-color: var(--color-vert);
}

h1, h2, h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
section ul {
  list-style: none;
  padding-left: 0;
  width: 100%;
}
/* Section les intervenants et l'équipe */
.section-cards h2 {
    margin-bottom: 30px;
}
.section-cards h3 {
    margin-bottom: 5px;
}
.section-cards>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    align-items: center;
}
.section-cards>ul>li {
    padding: 10px;
    min-width: 215px;
    max-width: calc(100% / 5);
    width: calc(100% / 5);
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 14px;
    margin-bottom: 20px;
    height: 100%;
}
#intervenants>ul>li {
    background-color: var(--color-rose-clair);
    box-shadow: 5px 5px 5px var(--color-rose);

}
#equipe>ul>li {
    background-color: var(--color-vert-clair);
    box-shadow: 5px 5px 5px var(--color-vert);
}
.section-cards h3 {
    text-align: center;
    font-family: "Chewy", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
}
.section-cards img {
    border-radius: 5%;
    max-height: 240px;
    margin-bottom: 7px;
}
.section-cards button {
    padding: 6px 12px;
    border: none;
    border-radius: 12px;
    background-color: var(--color-rose);
    cursor: pointer;
    transition: 200ms;
    margin-bottom: 10px;
}
.section-cards a {
    color: #000;
    font-weight: bold;
    font-size: 1.3rem;
    letter-spacing: 1px;
}
.section-cards .button-link {
    margin-top: 10px;
}
.section-cards p {
    font-family: "Chewy", system-ui;
    text-align: center;
    font-size: 20px;
}
#equipe>ul>li:nth-of-type(2) img {
    width: 136px;
}

/* Etoiles au au bord */
.section-cards>ul>li {
    position: relative;
}
.section-cards>ul>li:before {
    content: "";
    position: absolute;
    top: -15px;
    left: -10px;
    width: 32px;
    height: 32px;
    background: var(--etoile) no-repeat center;
    background-size: contain;
}
.section-cards>ul:nth-child(2n+1)>li:nth-child(1):before {
    top: -15px;
    left: 30px;
}

#equipe {
    background-color: var(--color-rose-clair);
}

@media screen and (max-width: 600px) {
    .section-cards {
        padding-bottom: 75px;
    }
}