body {
  font-family: "Cormorant Garamond", serif;
}

/* WRAPPER GÉNÉRAL */
.mission-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  box-sizing: border-box;
}

/* CONTENU DU TEXTE */
.mission-text {
  width: 100%;
  max-width: 1000px;
  padding: 0 10px;
  font-size: 1.4rem;
  color: #eee;
  text-align: justify;
  line-height: 1.25;
}

/* TITRE */
.mission-text h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-family: "Playfair Display", serif;
  font-weight: bold;
  text-align: center;
  color: #f0c23c;
  position: relative;
}

.mission-text h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: #f0c23c;
  margin: 12px auto 0;
  border-radius: 3px;
}

/* PARAGRAPHES */
.mission-text p {
  margin-bottom: 1rem;
}

.mission-text strong {
  color: #f0c23c;
  font-weight: bold;
}

.mission-text em {
  font-style: italic;
  color: #bbb;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mission-wrapper {
    padding: 160px 20px 160px;
  }

  .mission-text {
    font-size: 1.05rem;
  }

  .mission-text h1 {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .mission-text {
    font-size: 1rem;
  }

  .mission-wrapper {
    padding: 60px 20px 160px;
    height: auto;
  }
}
@media (min-width: 1600px) {
  .mission-text {
    max-width: 1200px;
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .mission-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .mission-text h1 {
    font-size: 3rem;
  }
}
