html,
body {
  margin: 0px;
  padding: 0px;
  scroll-behavior: smooth;
  font-family: 'SortsMillGoudy-Regular';
  font-size: 18px;
  letter-spacing: 1px;
  background-size: auto;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: black;
}

.flou_blanc {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(1px);
  background-color: rgba(255, 255, 255, 0.403);
  z-index: 1;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'UncialAntiqua-Regular';
  src: url('./images/UncialAntiqua-Regular.ttf') format('opentype');
}

@font-face {
  font-family: 'SortsMillGoudy-Regular';
  src: url('./images/SortsMillGoudy-Regular.ttf') format('opentype');
}

h1 {
  text-align: center;
  font-size: 50px;
  text-transform: uppercase;
  font-family: 'UncialAntiqua-Regular';
}

h2 {
  text-align: center;
  font-size: 50px;
  text-transform: uppercase;
  font-family: 'UncialAntiqua-Regular';
}

h3 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 0;
  font-family: 'UncialAntiqua-Regular';
  color: #301005;
  font-weight: 100;
}

h4 {
  text-align: center;
  font-size: 30px;
  font-family: 'UncialAntiqua-Regular';
  color: #301005;
  font-weight: 100;
}

h5 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 0;
  margin-top: 0;
  font-family: 'SortsMillGoudy-Regular';
  color: #301005;
  font-weight: 100;
}

p{
  margin: 0px 100px 0px 100px;
  font-weight: bold;
}

table {
  border-collapse: collapse;
  width: 100%;
  display:flex;
  justify-content: space-around;
  font-size: 20px;
  text-align: center;
}

th, td{
 border:1px solid rgb(237, 237, 215);
 padding: 5px;
}



div {
  padding: 10px 0px 10px 0px;
}

.boite_transparente {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: none;
}

.fond_transparent {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,       /* haut transparent */
    rgba(18, 5, 0, 0.95) 30%,   /* valeurs à modifier pour le fondu progressif */      /* zone centrale commence */
    rgba(18, 5, 0, 0.95) 70%,   /* valeurs à modifier pour le fondu progressif */      /* zone centrale finit */
    rgba(255,255,255,0) 100%      /* bas transparent */
  );
}

.contenu_boite {
  position: relative;
  z-index: 1;
  /* on met le texte uniquement dans la zone centrale */
  margin-top: -3%;    /* correspond au début de la zone centrale du gradient */
  margin-bottom: 7%; /* valeurs à modifier pour le fondu progressif */
  padding: 10px;      /* juste pour espacement interne */
}










.sticky {
  position: sticky;
  top: 0;
  z-index: 5;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  background-color: #301005;
  padding-top: 2px;
}

.menu_deroulant {
  position: relative;
  display: inline-block;
  background-color: #301005;
}

.bouton {
  position: relative;
  width: auto;
  height: 50px;
  display: flex;
  align-items: center;
  z-index: 0;
  overflow: hidden;
  padding: 20px;
  font-size: large;
  border-radius: 5px;
  background-color: #301005;
  color: white;
  font-size: larger;
}

.bouton:hover {
  background-color: #290d04;
}

.menu_deroulant:hover .contenu_menu {
  display: block;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: rgb(237, 237, 215);
  text-align: center;
}

.contenu_menu {
  display: none;
  position: absolute;
  left: 50%;
  /*Permet de centrer le menu déroulant*/
  transform: translateX(-50%);
  /*Permet de centrer le menu déroulant*/
  padding: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
  z-index: 1;
  width: auto;
  border-radius: 5px;
}

.contenu_menu a {
  display: block;
  padding: 10px 20px;
  background-color: rgb(237, 237, 215);
  color: black;
}

.contenu_menu a:hover {
  background-color: rgb(212, 212, 194);
  color: #301005;
}

.contenu_menu a:visited {
  color: black;
}

a {
  color: white;
  text-decoration: none;
}

a:visited {
  color: black;
}

a:hover {
  color: gold;
  text-decoration: none;
}

.bouton a {
  cursor: pointer;
}

.lien_image {
  line-height: 0;
  /*évite un petit espace sous l'image*/
}


footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  padding: 5px;
  padding-left: 50px;
  background-color: #301005;
  color: white;
}

footer p {
  margin: 0;
}