* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  background-color: #d6d6d6;
}

.container {
  text-align: center;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 300px; /* Max-width à 300px */
  margin: 0 auto;
  box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.3), -10px -10px 20px rgba(255, 255, 255, 0.3);
  /* Ombre personnalisée inspirée de l'image */
}

.mobile-message {
  display: none; /* Masquer par défaut */
}

.center-image {
  width: 100%;
  height: auto;
  display: block; /* Supprime l'espace sous l'image */
}

.edit-instruction {
  font-family: "Courier", monospace; /* Police Courier */
  font-size: 14px; /* Petite taille de police */
  text-align: center; /* Centrer le texte */
  margin-bottom: 25px; /* Espace entre le texte et l'image */
  color: #333; /* Couleur de texte gris foncé */
}

.draggable {
  position: absolute;
  color: white;
  font-weight: bold; /* Texte en gras */
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.4);
  cursor: move;
  outline: none;
}

#topText {
  font-size: 36px; /* Texte en grand */
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

#middleText {
  font-size: 24px;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
}

#bottomText {
  font-size: 16px; /* Texte en petit */
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

/* Masquer le texte mobile sur les grands écrans */


/* Masquer le bouton télécharger sur mobile et afficher le texte alternatif */
@media only screen and (max-width: 600px) {
  #downloadBtn {
    display: none; /* Masquer le bouton sur mobile */
  }
  .mobile-message {
    display: block; /* Afficher le texte sur mobile */
    font-family: "Courier", monospace; /* Police Courier */
    font-size: 14px; /* Petite taille de police */
    text-align: center; /* Centrer le texte */
    margin-top: 25px; /* Espace entre le texte et l'image */
    color: #333; /* Couleur de texte gris foncé */
  }

}
