/* Style général */
body {
    font-family: Arial, sans-serif;
    background: #fafafa;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

/* Conteneur principal */
.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

/* Image d’en-tête */
.header-img {
    width: 50%;
    height: auto;
    display: block;
    margin: 20px auto;
}

h1 {
    text-align: center;
    font-size: 2.4em;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 25px;
}

/* Médaillon (pages d’énigmes) */
.medaillon {
    width: 30%;
    display: block;
    margin: 30px auto;
    border-radius: 50%;
}

/* Texte historique */
.ref-texte {
    font-style: italic;
    font-family: "Times New Roman", serif;
    font-size: 1.2em;
    text-align: center;
    margin-top: 10px;
}

/* sous-texte d'info */
.ref-texte-small {
    font-size: 0.9em;
    font-style: italic;
    font-family: "Times New Roman", serif;
    text-align: center;
}

/* Titre d’énigme */
.enigme {
    margin-top: 40px;
    text-align: center;
    font-size: 1.6em;
    font-weight: bold;
}

/* Image d’énigme */
.enigme-img {
    width: 50%;
    display: block;
    margin: 25px auto;
}

/* Signature */
.signature {
    margin-top: 35px;
    font-weight: bold;
    text-align: right;
}

/* ----------- éléments de réponses ------------- */
.reponse-zone {
    margin-top: 20px;
    text-align: center;
}

.reponse-zone label {
    font-weight: bold;
    margin-right: 10px;
}

.reponse-zone input {
    padding: 8px;
    font-size: 1em;
    width: 200px;
}
 
