/* PAGE */
html, body {
      min-height: 100%;
      width: 100%;
      margin: 0;
      padding: 0;
      font-family: "Mulish", sans-serif;
      
}

/* CONTAINER*/
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/*CONTENT*/

.content-wrap {
  flex: 1;
}
.content {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  gap: 2%;
  padding: 0;
  justify-content: center;
  
}


.column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
/*sous-TITRE*/

.subtitle {
  text-decoration: underline;
  color: black;
  text-align: center;
  padding: 0rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}



/*BLOCK*/

.block1, .block2{
  display: block;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex: 1;
  border-radius: 5px;
}
.block1{
  line-height: 1.5;
  text-align: center;
  margin-left: 5%;
  margin-right: 5%;
}
.block2 {
  padding: 0rem;
  margin-top: 0rem;
  flex-direction: column; 
  justify-content: center; 
  align-items: center;     
  text-align: center;      
  line-height: 1.5;      
  margin-left: 10% ;  
  margin-right: 10%;
  flex-grow: 0;
  line-height: 160%;

}


.no-space{
  white-space: nowrap;
}
.en-gras{
  font-weight: bold;
  white-space: normal;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }

  .column {
    width: 100%;
  }

  .subtitle {
    margin-bottom: 1rem;
  }
  .content::before,
  .content::after {
    display: none;
  }
  .en-gras {
        display: block;       
        margin-bottom: 0.2rem; 
    }
}