@media screen and (-webkit-min-device-pixel-ratio:0) { 
  .your-element {
    property: value;
  }
}

@font-face {
  font-family: "ready";
  src: url("../fonts/druke_wide_heavy.otf");
}


body {
  margin: 0;
  height: 100vh;
  background-color: #FFB6C1; /* couleur de fond */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: crosshair;
}


.title {
  font-family: "ready", sans-serif;
  font-size: 10vw;
  display: inline;               /* inline ou inline-block */
  color: #FFB6C1;                /* couleur de départ */
  text-decoration: none;
  animation: flash 0.25s steps(2, start) infinite;
  text-shadow: 0 0 10px #FF1493, 0 0 20px #FFB6C1;
  background: none;              /* s'assurer qu'aucun fond n'existe */
}

.title:hover {
  -webkit-text-fill-color: #FFB6C1; /* remplissage au survol */
}


@keyframes flash {
  0% {
    color: #FFB6C1;
    text-shadow: 0 0 5px #FFB6C1, 0 0 20px #FF1493;
  }
  50% {
    color: #FF1493;
    text-shadow: 0 0 10px #FF1493, 0 0 30px #FFB6C1;
  }
  100% {
    color: #FFB6C1;
    text-shadow: 0 0 5px #FFB6C1, 0 0 20px #FF1493;
  }
}

