body, html {
    height: 100%;
    margin: 0;
  }
  .svg-background {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .svg-content {
    height: 100%;
  }
  .png-container {
    visibility: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .png-content {
    height: 24vh;
  }
  

  #countdown {
    position: fixed;
    top: 50%; /* Ajustez ce pourcentage pour positionner verticalement */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; /* Assurez-vous que cela est au-dessus des autres éléments */
    text-align: center; /* Pour centrer le texte à l'intérieur du div */
    width: 100%;
  }
  
  #countdown-timer {
    font-size: 7vh; /* Taille de la police pour le compte à rebours */
    color: black; /* Couleur par défaut du texte */
    text-shadow: 
      -1px -1px 0 #fff,  
       1px -1px 0 #fff,
      -1px 1px 0 #fff,
       1px 1px 0 #fff; /* Ombre portée blanche pour contraste */
       font-weight: bold;
  }