/* =========================
   BASE
========================= */

body {
  margin: 0;
  font-family: 'Oswald', sans-serif;
}

/* =========================
   FOND DE PAGE
========================= */

.decoration-de-fond2 {
  min-height: 100vh;
  background: linear-gradient(135deg, #000000, #5e5e5e, #535353);
  padding-bottom: 60px;
}

/* =========================
   NAVIGATION
========================= */

nav {
  background-color: #111;
  padding: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-size: 20px;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: red;
}

/* =========================
   SECTION HISTOIRE
========================= */

.histoire {
  background-color: #111;
  color: white;
  padding: 60px;
  margin: 60px auto;
  width: 90%;
  max-width: 1100px;
  box-shadow: 8px 8px 0 black;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Titre */

.histoire h2 {
  text-transform: uppercase;
  font-size: 36px;
  margin-bottom: 30px;
  border-bottom: 4px solid red;
  padding-bottom: 10px;
}

/* Paragraphes */

.histoire p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

/* Image */

.histoire-image {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.histoire-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 6px 6px 0 black;
}