/* Styles pour la boîte modale */
.modal {
    display: none; /* Caché par défaut */
    position: fixed; /* Position fixe */
    z-index: 1; /* Placez la boîte modale au-dessus de tout le contenu */
    left: 0;
    top: 0;
    width: 100%; /* Largeur pleine */
    height: 100%; /* Hauteur pleine */
    overflow: auto; /* Ajouter un défilement si nécessaire */
    background-color: rgba(0,0,0,0.4); /* Fondez noir avec opacité 40% */
  }
  
  /* Contenu de la boîte modale */
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* Centrez verticalement */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Largeur de la boîte modale */
  }
  
  /* Style pour le bouton de fermeture */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  .content {
    text-align: center;
  }
  
  .content p.large {
    font-size: 20px; /* Taille de police personnalisée */
    font-weight: bold; /* Optionnel : si vous voulez le rendre en gras */
    
  }
  
  .button {
    display: inline-block;
    background-color: #FF4328;
    color: #fff;
    font-size: 18px;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
  }
  
  .button:hover {
    background-color: #000000;
    color: #FF4328;
  }
  