
.image-container {
    position: relative;
    width: 100%;
    max-width: 600px;
  }

  .image-container img {
    width: 100%;
    display: block;
  }

  .text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5); /* Couleur de fond sombre et transparence */
    color: white;
    padding: 15px 20px;
    text-align: center;
    border-radius: 8px; /* Coins arrondis (facultatif) */
  }

  @keyframes blink {
    0%, 100% {
      background-color: #00A9FE;
    }
    50% {
      background-color: #0093DC;
    }
  }
  
  .blink-button {
    background-color: #00A9FE;
    color: white;
    padding: 0.5rem 1rem;
    font-weight: bold;
    border-radius: 0.375rem;
    animation: blink 1s infinite;
  }
  