body {
  background: linear-gradient(135deg, #232526 0%, #2c3e50 100%);
  color: #f3f3f3;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  transition: background 0.5s;
}

/* btn pour afficher une nouvelle blague  */
#btnAfficher {
  height: 48px;
  width: 200px;
  border-radius: 24px;
  border: none;
  font-size: 22px;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  background-color: #56468B;
  /* background: linear-gradient(90deg, #7f5af0 0%, #232526 100%); */
  color: #fff;
  box-shadow: 0 4px 16px rgba(31, 38, 135, 0.07);
  cursor: pointer;
  letter-spacing: 1px;

}
#btnAfficher:hover {
  /* background: linear-gradient(90deg, #232526 0%, #7f5af0 100%); */
  background-color: #6958AD;
  transition-duration: 200ms;
}



/* btn pour afficher la reponse  */
#btnReponse {
  margin-top: 30px;
  height: 36px;
  width: 170px;
  border-radius: 18px;
  border: none;
  font-size: 16px;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  /* background: linear-gradient(90deg, #232526 0%, #7f5af0 100%); */
  background-color: #56468B;
  color: #fff;
  box-shadow: 0 2px 8px rgba(31, 38, 135, 0.07);
  cursor: pointer;
  letter-spacing: 0.5px;

}
#btnReponse:hover {
  background-color: #6958AD;
  transition-duration: 200ms;
}




.container-Principal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  margin-top: 0;
  gap: 24px;
  background: rgba(30, 33, 43, 0.85);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  padding: 40px 24px;
}

/* endroit ou va être afficher la blague  */
#ft_blague {
  font-size: 22px;
  padding-top: 20px;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  color: #e4e4e4;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

#ft_reponseBlague {
  margin-top: 30px;
  font-size: 18px;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  color: #a3aed6;
  text-align: center;
  letter-spacing: 0.2px;
}
