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

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

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

.titreEve {
  /* position: relative; */

  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border-bottom: var(--couleur-primary) 2px solid;
     /* text-align: center; */
}

.article-passe,
input{
  display: none;  
}


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

.article-passe {
  display: none;
  flex-direction: column;
}
/* formePointeurSurIconeFlèche */
svg {
  cursor: pointer;
}

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

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

  100% {
    rotate: 360deg;
  }
}

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

section section article {
  display: flex;
  width: 350px;
  row-gap: 10px;
  column-gap: 20px;
  flex-direction: column;
  margin: 2% ;
  
}
/* imagesEvennements */
section section article img {
  object-fit: cover;
  height: 260px;
  width: 100%;
}

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