/*ajout de la police aclonica*/
@font-face {
  font-family: "aclonicaregular";
  src: url("../fonts/aclonica-regular-webfont.woff2") format("woff2"),
    url("../fonts/aclonica-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

/*styles généraux */
article {
  margin: 50px 140px;
}

/*taille du titre h1*/
h1 {
  font-size: 300%;
  color: black;
}

/*displax flex pour toutes les sections */
section {
  color: black;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/*styles des images des stades*/
.stade img {
  width: 280px;
  padding: 20px 0;
  border-radius: 60px;
}

/*styles pour les boxes des stades */
.stade {
  background-color: white;
  padding: 0 80px;
  margin: 30px 30px;
  border-radius: 25px;
  text-align: center;
  transition: 1s ease-in-out;
}

.stade:hover {
  transform: scale(1.05);
  transition: 1s;
}

.nom {
  font-size: 120%;
  margin: 20px 0;
}

.stade p {
  text-align: justify;
  text-justify: inter-word;
}

.text {
  margin: 20px 0;
}
