* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(203, 197, 197);
    color: #000000;
    line-height: 1.6;
}

header {
  background-color: #845D5E;
  padding: 20px 50px 0px 30px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left .logo {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.25rem;
  padding-left: 20px;
}

.nav-right {
  display: flex;
}

.nav-right a {
  margin-left: 3rem;
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
}

/* Mettre un soulignement pour préciser à l'utilisateur sur quel page il est (Opquast) */
a.active-page, a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: white;
  color: inherit; /* garde la couleur actuelle */
  font-weight: bold;
  color: white;
  font-size: 1.25rem;
}

@media (max-width: 891px) {
  .nav-right a {
    font-size: 1.1rem;
  }

  .nav-left .logo {
    padding-left: 20px;
    font-size: 1rem;
  }

  header {
    padding: 20px;
  }

  a.active, a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: white;
  color: inherit; 
  font-weight: bold;
  color: white;
  font-size: 1.1rem;
}
}

/* Permet d'afficher le nom du site en majuscule car écrit en minuscule dans le HTML (Opquast) */
.logo-min {
  text-transform: uppercase;
}

h1{
    font-family: "Overlock SC";
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #000;
    padding: 10px 0px 0px 30px;
    margin-bottom: 20px;
}

h2, h3{
    font-family: "Overlock SC";
    color: #000;
    padding-left: 30px;
    margin-bottom: 20px;
}


p{
    color: #000;
    font-family: Baskervville, serif;
    padding: 0px 30px 0px 30px;
}


/* liens sources stylisés en bouton.*/
a.bouton-lien {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #1a2046;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 20px;
  font-family: "Baskervville", serif;
  margin: 8px;
  color: white;
  text-decoration: none;
}

a.bouton-lien:hover {
  background-color: #060813;
}


footer {
    background-color: #333;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 40px;
    font-family: Baskervville, serif; 
}

.footer a{
    color: #fff;
    text-decoration: underline;
}
 .footer p{
    color: #fff;

 }