/* Pour ne faira apparaitre la page uniquement que sur appareils mobiles */
@media screen and (min-width: 900px) {
  .page-container {
    display: none;
  }

  h2 {
text-align: center;
color: aliceblue; 
}
}

@media screen and (max-width: 899px) {
  h2 {
    display: none;
  }
}

/* style de la page /apk :  */

/* titre :  */
h1 {
  color: white;
  text-align: center;
  font-size: 2rem;
  margin-left: 10%;
  margin-right: 10%;
}


/* style bouton  */

.conteneur1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* width: 80%; */
}
.conteneur1 a {
  background-image: linear-gradient(
    0.25turn,
    rgb(158, 93, 143),
    rgb(188, 65, 123)
  );
  padding: 0.8rem 1.5rem 0.8rem 1.5rem;
  border-radius: 3rem;
  text-decoration: none;
  color: white;
  margin-top: 1rem;
  margin-top: 1rem;
  text-align: center;
  width: 70%;
}

.conteneur1 a:hover {
  transition: 0.2s;
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.2);
  transform: scale(1.005);
}




/* style texte et description  */


.instructions-title {
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
}

.instructions {
    font-size: 1.0rem;
    margin-top: 5px;
margin-left: 10%;
margin-right: 10%;
color: white;
}

.instructions p span {
   font-size: 1.1rem; 
   font-weight: 500;
}

