
.description {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 300px; /* ou ajustez selon besoin */
}

.description .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 1;
}


.description > * {
  position: relative;
  z-index: 2;
}

.description-haut {
  height: 50%;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.description-haut h3 {
  padding-top: 10px;
  margin: 0;
  /*color:#00BFFF;*/
  font-size: 1.5em;
  
}

.description-bas {
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  overflow: auto;
}

.description-bas p {
  margin: 0;
  width: 100%;
  text-align: center;
  color: white;
}
