body {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}



.titre {

}
.box1 {
  font-family: "Titillium Web", serif;
  font-weight: 700;
  font-style: normal;
  color: rgb(0, 0, 0);
  font-size: clamp(1.125rem, 5.256vw - 0.058rem, 6.25rem);
  text-align: center;
}
.box2 {
  text-align: center;
  margin: 20px;
  font-size: clamp(1.125rem, 2.692vw + 0.519rem, 3.75rem) ;
  font-family: "Yantramanav", serif;
  font-weight: 400;
  font-style: normal;
  
}
  .grid-container {
    display: grid;
    grid-template-columns: auto 1fr; /* Colonne gauche fixe à 100px, droite flexible */
    gap: 1em; /* Espacement entre les colonnes */
    align-items: baseline; /* Alignement vertical des items */
    margin-bottom: 1em; /* Espacement entre les phrases */
    padding: 20px;
  }

  .numero {
    font-size: clamp(0.625rem, 1.282vw + 0.337rem, 1.875rem);
    text-decoration: underline;
    text-decoration-color: #ffffff; 
    text-decoration-style:dashed;
    text-underline-offset: 10px; 
  }

  .phrase {
    font-size: clamp(1rem, 1.538vw + 0.654rem, 2.5rem);
    box-shadow: 3px 4px 6px 0px rgba(11, 11, 11, 0.225);
    padding: 20px;
  }
  #ensemble-title {
   
  }
  button {
    text-align: center;
  
  }

  #random-ensemble {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #6C63FF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: block; /* Assure que le bouton est un bloc pour centrer */
    margin: 20px auto; /* Centre le bouton horizontalement */
   
}

#random-ensemble:hover {
    background-color: #ff2f0a;
    transform: scale(1.1);
}

#random-ensemble:active {
    background-color: #4a42b1;
    transform: scale(0.9);
}

.container {
  text-align: center;
  margin-top: 12px;
  display: block;
  
}
#search-bar {
  padding: 8px;
  width: 50%;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  top: 1%;
  
}