@font-face {
  font-family: "Study Case";
  src: url("polices/Study\ Case.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

body > *:not(footer) {
  flex: 1 0 auto;
}

body {
    background-image: url("images/fond_violet2.jpg");
    background-size: cover;
    background-attachment: fixed;
    font-family: "Fredoka", sans-serif;
    overflow-x: hidden;
    color: #1e1e1e;  
    margin: 0;
}

.body_intro {
   background-size: cover;
    background-attachment: fixed;
    font-family: "Fredoka", sans-serif;
    overflow-x: hidden;
    color: #1e1e1e;  
    margin: 0;
}

.header_intro { /*titre*/
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: clamp(1em, 2.8em, 3.5em); 
  text-align: center;
  color: #578440;
  text-shadow: 0px 5px 2px #5784404d;
  margin-top: 10%;
  margin-bottom: 50px;
  transition: all 0.5s ease-in-out;
}

.texte_intro { /*paragraphe lettre*/
  font-size: 1.5rem;
  display: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  padding: 35px 50px;
  background: linear-gradient(to bottom, rgba(239, 210, 218, 0) 0%,  
  #ffeaf5 10%,  
  #ffeaf5 90%,  
  rgba(239, 210, 218, 0) 100%);
  font-family: "Study Case", sans-serif;
}

.ouvrir {
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  color: #e481c3;
  transition: all 0.5s ease-in-out;
  margin-top: 0px;
  text-shadow: none;
  text-decoration: none;
}

.ouvrir:hover {
color: #8b005d;
transform: scale(1.1);
}

.enveloppe {
  display: block;
  margin: auto;
}

header {
    z-index: 1000;
    position: fixed;
    top: 0;
    width: 100%;
    transition: all 0.3s ease;
}

header.active {
    background-color: #EFD2DA;
    box-shadow: 0 0.5rem 1rem rgba(10, 22, 51, 0.171);
}

.barre_navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 5px 20px;
}

.nav-left-part {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
  width: 95px;
}

header ul {
    list-style: none;
    display: flex;
    gap: 40px;
    padding-left: 0;
    text-align: center;
}


header nav li a {
    text-decoration: none;
    color: #578440;
    font-weight: 600;
    font-size: 1.4em;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    display: inline-block;
}

header nav li a:hover {
    transform: translateY(-7px);
    text-shadow: 0px 3px 2px #839c7994;
    border-bottom: #578440;
}

/* BARRE DE RECHERCHE */

.recherche {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #E481C3;
    border: 2px solid #2e2e2e;
    box-shadow: 0 4px 24px rgba(10, 22, 51, 0.1);
    border-radius: 4rem;
    padding: 10px;
    overflow: hidden;
    transition: width 0.5s cubic-bezier(0.9, 0, 0.3, 0.9);
    align-items: center;
    display: flex;
    box-sizing: border-box;
    margin-left: auto;
}

.saisie_recherche {
    border: none;
    width: 80%;
    height: 25px;
    border-radius: 4rem;
    padding-left: 14px;
    font-family: "Fredoka", sans-serif;
    font-size: 1em;
    color: #2e2e2e;
    background-color: #EFD2DA;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s, pointer-events 0s 0.5s;
}

.saisie_recherche:-webkit-autofill {
    color: #2e2e2e;
    margin-right: 50px;
}

.bouton_recherche {
    width: 35px;
    height: 35px;
    background-color: #E481C3;
     border-radius: 4rem;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 3px;
    margin: auto;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.9, 0, 0.3, 0.9);
}

.search__icon,
.search__close {
    color: #2e2e2e;
    font-size: 1.5rem;
    position: absolute;
    margin-left: 5px;
    transition: opacity 0.5s cubic-bezier(0.9, 0, 0.3, 0.9);
}

.search__close {
    opacity: 0;
    left: 1px;
}

.show-search {
    width: 100%;
}

.show-search .saisie_recherche {
    opacity: 1;
    pointer-events: initial;
}

.show-search .bouton_recherche {
    transform: rotate(90deg);
}

.show-search .search__icon {
    opacity: 0;
}

.show-search .search__close {
    opacity: 1;
}

.resultat_recherche {
  font-size: 1.8rem;
  font-weight: 600;
  margin-left: 100px;
  margin-bottom: 0;
}

.inventaire_complet {
  font-size: 1.4rem;
  display: block;
    padding: 10px 20px;
    background-color: #d1c6e9;
    border: 3px solid #2e2e2e;
    color: #2e2e2e;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    margin: 0 auto 30px auto;
    text-align: center;
    width: 20%;
}

/* FILTRES */

.cliquez_filtres {
  font-family: "Fredoka", sans-serif;
  font-size: 1.2em;
  margin: 1% 0 0 100px;
  color: #2e2e2e;
}

.filtres {
  position: fixed;
  top: 80px;
  right: 20px;
  width: 300px;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #EFD2DA;
  border: 3px solid #2e2e2e;
  padding: 1rem;
  border-radius: 20px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  box-sizing: border-box;
}

.filtres.hidden {
  display: none;
}

.filtre_titre {
  font-weight: 600;
  font-size: 1.1em;
  color: #1e1e1e;
}

.toggle-checkbox {
  display: none;
}

.toggle-label, .number_filtre {
  display: block;
  cursor: pointer;
  background-color: #f2b4d3;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1em;
}

.number_filtre::placeholder {
  color: #2e2e2e;
  font-family: "Fredoka", sans-serif;
  font-weight: 400;
}

.filter-options {
  max-height: 0;
  max-width: 178x;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 10px;
  margin-left: 10px;
  color: #1e1e1e;
}

.filtres-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reinitialiser {
  border-radius: 10px;
  display: inline-block;
  font-family: "Fredoka", sans-serif;
  font-size: 1.1em;
  color: #1e1e1e;
  background-color: #BADD7F;
  border: 2px solid #578440;
  padding: 5px;
  font-weight: 500;
}

.toggle-label {
  margin-top: 10px;
}

.filtre_groupe {
  margin-top: 10px;
  font-weight: 500;
}

.filtre_groupe label,
.filtre_groupe select {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: 1em;
  color: #1e1e1e;
}
.filtre_groupe select {
    background-color: #f2b4d3;
    border: 0px solid #f2b4d3 ;
    color: #1e1e1e;
    border-radius: 8px;
    width: 260px;
    cursor: pointer;
    padding: 6px 12px;
    font-weight: 500;
    margin-top: 6px;
}

.filtre_groupe label {
    margin-top: 13px;
}

.filtre_groupe select option {
    background-color: white;
}

.number_filtre {
  margin-top: 4px;
  border: none;
}

#toggle_type_relation:checked ~ label[for="toggle_type_relation"] + .filter-options,
#toggle_lieu:checked ~ label[for="toggle_lieu"] + .filter-options,
#toggle_hashtag:checked ~ label[for="toggle_hashtag"] + .filter-options {
  max-height: 500px; /* assez grand pour tout afficher */
}

.filter-options label {
  display: block;
  margin-bottom: 6px;
  cursor: pointer;
}

/* BURGER MENU */

.hamburger {
    display: none;
    cursor: pointer;
    text-align: right;
    margin-left: auto;
}

.bar {
    display: block;
    width: 33px;
    height: 5px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(10, 22, 51, 0.1);
    background-color: white;
    border-radius: 3px;
}

main {
  margin-top: 100px;
  padding: 20px;
}

.titre_page {
  color: #e481c3;
  text-shadow: 0px 4px 3px #E4B9C3;
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw + 0.7rem, 2rem);
  margin-top: 90px;
  margin-bottom: 40px;
}

/* PAGE INVENTAIRE */

.rectangles-container {
 display: grid;
justify-items: center;
padding: 0 70px;
margin: 70px 0;
row-gap: 80px;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@keyframes appear {
  from {
    opacity: 0.2;
    scale: 0.75;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

.rectangle_vert {
  width: clamp(240px, 22vw, 280px);
  height: clamp(280px, 26vw, 320px);
  background-color: #BADD7F;
  position: relative;
  transition: transform 0.3s e ase;
  animation: appear linear;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
  border: 10px solid #578440;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0;
  box-shadow: 0 4px 17px rgba(0, 0, 0, 0.4);
  overflow: visible;
}

.rectangle_vert:hover {
  transform: scale(1.04);
}

.close-btn {
  position: absolute;
  color: #2e2e2e;
  background-color: #BADD7F;
  border:5px solid #578440;
  border-radius: 50%;
  font-weight: 500;
  font-size: 3.5em;
  width: 50px;
  height: 41px;
  text-decoration: none;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center;
  right: 13vw;
  bottom: 65vh;
  padding-bottom: 9px;

}
.close-btn:hover {
   transform: scale(1.1);
}

.rectangle_rose {
  width: clamp(180px, 18vw, 220px);
  height: clamp(160px, 16vw, 200px);
  background-color: #E4B9C3;
  position: absolute;
  top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 5px solid #E481C3;
  border-radius: 15px;
}

.rectangle_vert_recherche {
  width: clamp(240px, 22vw, 280px);
  height: clamp(280px, 26vw, 320px);
  background-color: #BADD7F;
  position: relative;
  transition: transform 0.3s e ase;
  animation: appear linear;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 20px;
  border: 10px solid #578440;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0;
  box-shadow: 0 4px 17px rgba(0, 0, 0, 0.4);
}

.rectangle_vert_recherche {
 margin: auto;
}

.rectangle_vert:hover, .rectangle_vert_recherche:hover {
  transform: scale(1.04);
}

.avatars {
  height: clamp(180px, 30vw, 230px);
  margin-bottom: clamp(20px, 5vw, 40px);
}

.avatars_individuels {
  height: clamp(180px, 20vw, 280px);
  margin-bottom: clamp(20px, 5vw, 40px);
}

.prenoms {
  font-size: clamp(1.5em, 5vw, 2.35em);
  font-family: "Cherry Bomb One";
  color: #E481C3;
  -webkit-text-stroke: 2px black;
  text-align: center;
  padding: 0 30px;
  margin-top: auto;
  margin-bottom: 15px;
  line-height: 1.1;
}

.cloche {
  position: fixed; 
  bottom: 10px; 
  right: 15px; 
  width: 102px; 
  height: auto; 
  cursor: pointer; 
  transition: opacity 0.3s ease; 
}

.cloche:hover {
  content: url("images/cloche_menuu2.png");
}

/* PAGE GARCONS INDIVIDUELS */

.rectangle_garcon_individuel_vert {
  width: clamp(600px, 55vw, 820px);
  height: clamp(400px, 30vw, 440px);
  /* width: 700px;
  height: 380px; */
  background-color: #BADD7F;
  border: 9px solid #578440;
  margin: 20px auto;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  padding: 2%;
  display: flex;
  justify-content: space-between;
}

.gauche {
  display: flex;
  flex-direction: column;
  width: 45%;
  margin-right: 5%;
  margin-top: 1%;
  align-items: center;
}

.droite {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 55%;
}

.rectangle_garcon_individuel_rose {
  width: clamp(180px, 20vw, 250px);
  height: clamp(160px, 18vw, 230px);
  background-color: #E4B9C3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 5px solid #E481C3;
  border-radius: 15px;
}

.avatars_individuels {
  width: 100%;
  border-radius: 50%;
}

.prenoms_individuels {
  font-size: clamp(1.5em, 5vw, 2.5em);
  font-family: "Cherry Bomb One";
  color: #E481C3;
  -webkit-text-stroke: 2px black;
  text-align: center;
  padding: 0 30px;
  margin-top: 8px;
  margin-bottom: 15px;
  line-height: 1.1;
}

.informations_individuelles {
  display: flex;
  flex-direction: column;
  margin-bottom: 4px;
}

.categories {
  margin: 4px 5px;
  font-size: clamp(1em, 1.5vw, 1.11em);
}

strong {
  font-weight: 600;
}

.jauge {
  display: flex;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 18px;
  width: 100%;
}

.barre {
  flex: 1;
  height: 15px;
  background: linear-gradient(to right, #FF003B, #FFEA00, #0DFF00);
  border-radius: 10px;
  border: 2px solid #1e1e1e;
  position: relative;
}

.curseur {
    position: absolute;
    width: 0;
    height: 0;
    top: -15px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid #1e1e1e;
}

.emojis_coeurs {
  height: 40px;
  width: auto;
}

.emojis_coeurs:hover {
  cursor: default;
}

.note {
  font-weight: 700;
  font-size: 2.25em;
  margin: 0;
}
.hashtag {
  font-weight: 600;
  font-size: 1.8em;
  margin-top: 4px;
}
.note, .hashtag {
  color: #E481C3;
  text-shadow: 0px 4px 3px #E4B9C3;
  text-align: center;
}

/* MDP FORMULAIRE */

.hidden {
  display: none;
}

.success {
  color: green;
}

.error {
  color: red;
}

.champ-erreur {
  border: 1px solid red;
}

.champ-ok {
  border: 1px solid green;
}
/* PAGE FORMULAIRE */

.container_rectangle_ajouter {
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.rectangle_ajouter {
  height: 710px;
  width: 550px;
  background-color: #BADD7F;
  border: 7px solid #578440;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container_formulaire {
      max-width: 600px;
      margin: 40px auto;
      padding: 30px;
      background-color: #ffeaf5;
      border: 4px solid #E481C3 ;
      border-radius: 20px;
      box-shadow: 0 4px 17px rgba(0, 0, 0, 0.4);
      font-size: 1.1rem;
    }

    .section-title {
      font-weight: 600;
      color: #578440;
      margin-top: 20px;
      margin-bottom: 10px;
    }

  #photoPreview {
  max-width: 300px;
  margin: auto;
  height: auto;
  border-radius: 12px;
  margin-top: 7px;
}

    label {
      display: block;
      margin-top: 10px;
    }

    input[type="text"],
    input[type="date"],
    input[type="number"],
    input[type="password"],
    select,
    textarea {
      width: 90%;
      padding: 10px;
      border-radius: 10px;
      border: none;
      margin-top: 5px;
      font-family: 'Fredoka', sans-serif;
      font-size: 0.9em;
    }

    textarea {
      resize: vertical;
    }

    .caracteres {
      margin-top: 0;
      margin-bottom: 20px;
      color: #578440;
      font-weight: 500;
    }

    input::placeholder,
    textarea::placeholder {
  font-size: 1.15em;
}

    .inline-fields {
      display: flex;
      gap: 10px;
    }

    .inline-fields > div {
      flex: 1;
    }

    hr {
      border: 1px solid #578440;
      margin: 20px 0;
    }

    .valider_ajout,
    .valider_mdp {
      background-color: #E481C3;
      color: white;
      border: none;
      border-radius: 12px;
      padding: 12px 20px;
      font-size: 1.2em;
      font-weight: 500;
      font-family: "Fredoka", sans-serif;
      width: 20%;
      margin-top: 30px;
      cursor: pointer;
      transition: all 0.3s;
      display: block;
      margin: 30px auto 0 auto;
    }

    .valider_ajout:hover,
    .valider_mdp:hover {
      background-color: #d566b0;
      transform: scale(1.04);
    }

    input[type="file"] {
      font-size: 13px;
      padding: 5px 0;
    }

/* PAGE JEU MENU */


.serveuse {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(100px, 20vw, 200px);
  height: auto;
  margin-right: 5.3%;
}

.serveuse_prenom {
  position: absolute; 
  bottom: 3%; 
  right: 11%;
  font-weight: 600;
  font-size: 2.3em;
  color: #E481C3;
  text-shadow: 0px 4px 3px #E4B9C3;
}

.container_rectangle_menu {
  margin-top: 30px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10vw;
}

.rectangle_menu {
  width: 60vw;
  height: 70vh;
  background-color: #EFD2DA;
  border: 6px solid #E481C3;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.rectangle_menu h1:first-of-type {
  color: #E481C3;
  text-shadow: 0px 4px 3px #E4B9C3;
  text-align: center;
  margin-top: 1vh;
}

.rectangle_menu p {
  font-size: 1.3rem; 
  margin-top: 30px;   
  display: flex;   
  padding: 0 20px;       
}

.emojis {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap; 
  margin: 20px 0;
}

.emojis img {
  width: 50px;
  height: auto;
  object-fit: cover;
}

.commencer {
  display: block;
  width: max-content;
  margin: 1vh auto;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  color: #2e2e2e; 
  border: none;
  padding: 10px 20px; 
  font-family: "Fredoka", sans-serif;
  border-radius: 20px;
  background-color: #E481C3;
  transition: all 0.3s ease;
}

.commencer:hover {
  transform: scale(1.1);
  cursor: pointer;
}

#quiz-container {
  margin-top: 50px;
  margin: 0 auto;
  width: 100%;
  min-height: 350px;
}

fieldset { 
  border: none; 
  margin-bottom: 20px; 
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
  
legend { 
  font-weight: 600; 
  margin-bottom: 30px; 
  font-size: 200%;
  text-align: center;
  color: #2e2e2e;
}

.option-btn {
      font-family: "Fredoka", sans-serif;
      display: block;
      width: 40%;
      padding: 15px;
      margin: 8px 0;
      cursor: pointer;
      text-align: center;
      border-radius: 20px;
      border: none;
      color: #2e2e2e;
      transition: all 0.3s ease-in-out;
      font-size: 1.3em;
    }

.option-btn:hover {
  transform: scale(1.05);
}    

#nav-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
    gap: 10px;
}

.option-btn.selected, .option-btn:focus {
  background-color: #E481C3;
  }

  #prevBtn, 
  #nextBtn, 
  #submitBtn, 
  .rejouer,
  .details_menu {
      background-color: #E481C3;
      font-weight: 500;
      padding: 10px 20px;
      border-radius: 20px;
      border: none;
      font-size: 1.3em;
      cursor: pointer;
      margin-right: 10px;
      margin-top: 10px;
      text-align: center;
      color: #2e2e2e;
      font-family: "Fredoka", sans-serif;
    }

.details_menu, #prevBtn {
  text-decoration: none;
 background-color: #f2b4d3;
}


    @media (max-width: 600px) {
      #quiz-container { 
        padding: 10px 2px; 
      }
      .option-btn { 
        font-size: 0.95em; 
      }
    }

#quiz-container h2 {
  font-weight: 500;
  margin-top: 20px;
}

    .resultat-garcon {
      text-align: center;
      max-width: 100%;
      max-height: 100%;
      overflow: auto;
      box-sizing: border-box;
      
  }

.avatars_menu {
  height: clamp(100px, 20vw, 200px);
}

.prenoms_menu {
  font-size: 2.2em;
  font-family: "Cherry Bomb One";
  color: #E481C3;
  -webkit-text-stroke: 2px black;
  text-align: center;
  padding: 0 15px;
  margin-top: 4px;
  margin-bottom: 7px;
  line-height: 1.1;
}

.rectangle_menu p {
  justify-content: center;
}


@media(max-width:768px) {
  nav {
    position: fixed;
    margin-right: 30px;
    right: 0;
}
.hamburger {
  display: block;
  cursor: pointer;
}
.hamburger.active .bar:nth-child(2){
  opacity: 0;
}
.hamburger.active .bar:nth-child(1){
    transform: translateY(10px) rotate(45deg);
  }
.hamburger.active .bar:nth-child(3){
  transform: translateY(-10px) rotate(-45deg);
}
.barre_navigation {
  padding: 5px 72px 5px 0;
}

.nav-menu {
    display: flex;
    position: fixed;
    left: 0;
    top: -100%;
    padding-bottom: 20px;
    gap: 10px;
    flex-direction: column;
    background-color: #EFD2DA;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    align-items: center;
  }

.nav-menu.active {
    top: 8%;
        margin-top: 10px;
  }
  
  header div nav ul li a {
    font-size: 1.3em;
  }
  
  .rectangle_garcon_individuel_vert {
    width: clamp(230px, 55vw, 820px);
    height: 330px;
  }

  .rectangle_garcon_individuel_rose {
    height: clamp(160px, 16vw, 200px);
    width: clamp(180px, 18vw, 220px);
  }
}

@media(max-width:490px) { 
  .rectangle_garcon_individuel_vert {
    display: flex;
    justify-content: center;
  }
  
  .rectangle_garcon_individuel_rose { 
    margin: 0;
  }
}
    /* PIED DE PAGE */
    
    footer {
      background-color: #fce4ec;
      padding: 20px;
      text-align: center;
      flex-shrink: 0;
      width: 100%;
    }
    
    .transition-content {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .citation {
      font-style: italic;
      font-size: 1.2rem;
      color: #c71585;
      margin-bottom: 20px;
    }
    
    .attribution {
        margin-bottom: 30px;
    }
    
    .about-button {
      padding: 10px 20px;
      background-color: #f8cde5;
      color: #8b005d;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      font-family: "Fredoka", sans-serif;
      font-size: 1em;
      margin: 0 7px;
    }
    
    .about-button:hover, .about-button:focus {
      background-color: #f2b4d3;
    }
    
    .about-section {
      margin-top: 40px;
      margin-left: auto;
      margin-right: auto;
      font-size: 1.1rem;
      line-height: 1.6;
      text-align: left;
    }
    
    footer h1,
    footer h2,
    footer h3,
    footer strong {
        font-weight: 500;
    }
    
    #legalSection h2 {
        margin-top: 35px;
        margin-bottom: 17px;
    }
    
    .hidden {
      display: none;
    }
    
    .photo_thelma {
        margin: 0 auto;
        display: block;
        width: 60%;
        height: auto;
        border-radius: 15px;
    }

    .droits {
      margin: 30px 0 0 0;
    }