/** @format */
.font-extralight {
  font-weight: 200;
}

.font-black {
  font-weight: 900;
}

.font-semibold {
  font-weight: 600;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-extrabold {
  font-weight: 900;
}

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

main h1 {
  display: inline-block;
}

p {
  padding: 5%;
}

h2 {
  font-size: 17px;
}

.activites-enfances {
  color: var(--couleur-accent-un);
}

.activites-jeunes {
  color: var(--couleur-accent-deux);
}

.activites-famille {
  color: var(--couleur-accent-trois);
}

.activites-adultes {
  color: rgba(204, 102, 204, 1);
}

.activites-sociocult {
  color: var(--couleur-primary);
}

.span-wrap {
  width: 113%;
}

.articles {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;

  article {
    width: clamp(250px, 95%, 378px);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 auto;
    width:250;

    img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      margin: 0 auto;
    }
  }
}

.activiteAge {
  width: 100%;
  display: block;
  text-align: center;
}

/* les liens */
.articles a {
  text-decoration: none;
}

.letter{
  font-family: Poppins, sans-serif;
  font-size: clamp(1.8rem, 2vw, 2em);
  line-height: 80px;
}

.activites-enfances .age-range {
  color: var(--couleur-accent-un);
  font-family: Poppins, sans-serif;
  font-size: 1.5em;
}

.activites-jeunes .age-range {
  color: var(--couleur-accent-deux);
  font-family: Poppins, sans-serif;
  font-size: 1.5em;
}

/* bouton remonter */
.button-scroll {
  width: 40px;
  height: 70px;
  position: sticky;
  bottom: 150px;
  left: 92%;
  border: none;
  cursor: pointer;
}