/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url(img/watercolor-wood-texture.png);
  background-size: cover;
  background-color: black;
  color: black;
}

@font-face {
  font-family: fleur; /* set name */
  src: url(fonts/FleurDeLeah-Regular.ttf); /* url of the font */
}

@font-face {
  font-family: lavish; /* set name */
  src: url(fonts/LavishlyYours-Regular.ttf); /* url of the font */
}

@font-face {
  font-family: charm; /* set name */
  src: url(fonts/Charm-Regular.ttf); /* url of the font */
}

.booklet .b-page {
  height:100%;
  width:100%;
}

.booklet .b-page:nth-child(odd) .b-wrap:not(.b-page-cover) {
  background-image: linear-gradient(to right, #E0D3AF 85%, #877F6A 99%, black 100%);
  height:100%;
  width:100%;
  border-left: 0.5px solid black;
}

.booklet .b-page:nth-child(even) .b-wrap:not(.b-page-cover) {
  background-image: linear-gradient(to left, #E0D3AF 85%, #877F6A 99%, black 101%);
  height:100%;
  width:100%;
  border-right: 0.5px solid black;
}

.booklet .b-page:not(.b-p2):not(.b-p1):not(.b-p3):not(.b-p0):not(.b-p4):not(.b-pN){
  display : none;
}

.booklet .b-page-cover {
  background-color: rgba(100,100,0,1);
}

.booklet .b-page-0 {
  display:none;
}

.booklet .b-page:has(.b-page-empty) {
  display:none;
}

.couverture {
  height:100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pageEntree {
  height:100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.titre-cover {
  font-family: fleur; font-size: 100px; font-style: normal; font-variant: normal; font-weight:500;
  color: rgb(239,191,4);
}

.titre {
  font-family: fleur; font-size: 50px; font-style: normal; font-variant: normal; font-weight:500; line-height: 30px;
}

.lien {
  font-family: fleur; font-size: 35px; font-style: normal; font-variant: normal; font-weight:500; line-height: 30px;
  color: black;
}

.sous-titre {
  font-family: lavish; font-size: 40px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 30px;
}

.text {
  font-family: charm; font-size: 25px; font-style: normal; font-variant: normal; font-weight: 300; line-height: 30px;
}

.separatorText {
  width : 50%;
  height: 1px; 
  border: none; 
  background: rgba(0,0,0,0.2); 
  margin: 0px 0; 
}


.separatorTitre {
  width : 50%;
  height: 1px; 
  border: none; 
  background: rgba(0,0,0,1); 
  margin: 0px 0; 
}