/* ===== Global ===== */
html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #FFFFFF;
  color: #333;
  display: flex;
  flex-direction: column;
}

/* ===== Header ===== */
header {
  background-color: #C41414;
  color: white;
  padding: 20px 0;
  text-align: center;
}

/* ===== Footer ===== */
footer {
  background-color: #333;
  color: white;
  padding: 10px 0;
  text-align: center;
  width: 100%;
}

/* ===== Main ===== */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

/* ===== Page 1 - texte centré et très grand ===== */
.full-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.center-text {
  text-align: center;
  font-size: 3em; /* texte beaucoup plus grand */
  line-height: 1.5;
}

/* ===== Liens ===== */
a {
  color: #C41414;
  text-decoration: none;
  font-weight: bold;
  display: block;
  margin: 10px 0;
}

a:hover {
  text-decoration: underline;
}




