/* Styles généraux */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: ghostwhite;
  color: #111;
  text-align: center;
}

/* Header */
header {
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
}

/* Texte d'introduction */
.intro {
  margin: 20px;
  font-size: 16px;
  line-height: 1.6;
}

/* Boutons */
.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

button {
  background: #ff4b2b;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.parisB {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}


button:hover {
  background: #ff6b4b;
}

/* Responsivité */
@media (max-width: 600px) {
  .intro {
    font-size: 14px;
    padding: 10px;
  }

  button {
    width: 80%;
  }

  .numId {
    font-weight: bod;
    text-align: right;
    margin-right: 30px;
  }

