body main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3em;
}

.evennements {
  width: 85%;
}

h2 {
  color: var(--couleur-accent-un);
  align-items: center;
}

h3 {
  font-family: "Poppins-Semibold";
  font-size: calc(1rem + 0.5vw);
  color: var(--couleur-accent-un);
}

h4 {
  color: var(--couleur-primary);
  font-family: "Poppins-Semibold";
  font-size: calc(1rem + 0.3vw);
}

.activite1 article p {
  font-size: calc(1rem + 0.2vw);
}

.titreEve {
  width: 100%;
  height: auto;
  display: flex;
  position: relative;
  align-items: center;
  border-bottom: var(--couleur-primary) 2px solid;

  > :first-child {
    position: relative;
    left: 0;
  }

  > :last-child {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* effetsIconeFlecheSelonCheck */
input:not(:checked)+label #boutonsvg {
  rotate: 270deg;
  scale: initial;
}

main section div .imgRose {
  /* position: absolute; */
  width: 63px;
  height: 63px;
  display: inline-table;
  animation: rotation 4s linear infinite;
}

@keyframes rotation {
  0% {
    rotate: 0deg;
  }

  100% {
    rotate: 360deg;
  }
}

.activite1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.activite1 article {
  display: flex;
  width: 350px;
  row-gap: 8px;
  column-gap: 20px;
  flex-direction: column;
  margin: 2%;
}

/* imagesEvennements */
.activite1 article img {
  object-fit: cover;
  height: 260px;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  main>p {
    text-align: center;
  }
}