.statisques {
  width: var(--section-width);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  background-color: var(--bg-color);
  gap: 2rem;
  padding: 3rem;
  text-align: center;
}

.statisques h1 {
  font-size: 3em;
  letter-spacing: 2px;
}
.statisques h2 {
  font-size: 1.3rem;
  color: var(--secondary-color);
}

@media (max-width: 800px) {
  .statisques {
    padding: 1rem;
    gap: 1.5rem;
  }
  .statisques h1 {
    font-size: 2rem;
  }
  .statisques h2 {
    font-size: 1rem;
  }
}
