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

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

/*style pour la vidéo*/
.title_video {
  margin: 30px auto;
  display: flex;
  align-items: center;
}

video {
  margin: 30px auto;
  width: 80%;
  border-radius: 25px;
  transition: 1s ease-in-out;
}

video:hover {
  transform: scale(1.05);
  transition: 1s;
  cursor: pointer;
}
