/*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%;
}

/*styles pour la parti d'introduction */
#container-intro {
  margin: 40px auto;
  text-align: center;
}

#container-intro p {
  margin: 30px 0;
  text-align: justify;
  text-justify: inter-word;
  font-size: 150%;
}

#container-intro img {
  border-radius: 25px;
  width: 80%;
  transition: 1s ease-in-out;
}

#container-intro img:hover {
  transform: scale(1.05);
  transition: 1s;
}

/*styles pour la partie des actualités */
#container-actu {
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-self: space-between;
  overflow: hidden;
}

.box-actu {
  border-radius: 25px;
  margin: 0 30px;
  padding-top: 300px;
  padding-right: 600px;
  color: white;
  font-size: 150%;
  text-align: left;
}

.box-actu p {
  margin: 10px;
}

#news1 {
  background-size: cover;
  background-image: url("../images/image_loris.jpg");
  background-position: center;
}

#news2 {
  background-size: cover;
  background-image: url("../images/image_leGraet.jpg");
  background-position: center;
}

#news3 {
  background-size: cover;
  background-image: url("../images/image_pele.jpg");
  background-position: center;
}

#news4 {
  background-size: cover;
  background-image: url("../images/image_argentine.jpg");
  background-position: center;
}

#news5 {
  background-size: cover;
  background-image: url("../images/image_loris.jpg");
  background-position: center;
}

#news6 {
  background-size: cover;
  background-image: url("../images/image_leGraet.jpg");
  background-position: center;
}

#news7 {
  background-size: cover;
  background-image: url("../images/image_pele.jpg");
  background-position: center;
}

#news8 {
  background-size: cover;
  background-image: url("../images/image_argentine.jpg");
  background-position: center;
}

.scroll {
  display: flex;
  align-items: center;
  animation: defile 30s linear infinite;
}

/*animation qui permet de faire défiler les actualités*/
@keyframes defile {
  0% {
    transform: translate(0%, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
