/*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;
  color: black;
}

/*taille du titre h1*/
h1 {
  font-size: 300%;
  margin: 60px 0;
}

/*styles pour un groupe */
.groupe-equipes {
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/*styles pour chaque équipe*/
.equipe {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 20px;
  border-radius: 25px;
  transition: 1s ease-in-out;
}
.equipe img {
  width: 150px;
  border-radius: 25px;
  margin: 0 20px;
}
.equipe p {
  font-size: 150%;
}

.equipe:hover {
  transform: scale(1.2);
  transition: 1s;
}
