/*********HEADER*********/
.marge_header {
  height: 1rem;
}
.container_title {
  margin: 10% 0 10% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title {
  text-align: center;
  font-size: 4rem;
  font-family: "Jura", sans-serif;
}
.line_title {
  width: 300px;
  height: 2px;
  background: #2b2d42;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles pour cette Media Queries */
  .title {
    font-size: 3rem;
  }
  .line_title {
    width: 200px;
  }
  .container_title {
    margin: 5rem 0 5rem 0;
  }
}
