body {
    margin: 0;                 /* Supprime les marges par défaut du navigateur */
    min-height: 100vh;         /* Force le body à prendre 100% de la hauteur de l'écran */
    min-height: 100dvh;        
    display: flex;             /* Active le mode Flexbox */
    justify-content: center;   /* Centre le contenu horizontalement */
    background-color: #FFF; 
    font-family: sans-serif;
    color:black;
}
.mon-contenu {
    margin: auto; 
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    /* Sécurité pour que le bloc ne colle pas aux bords de l'écran sur mobile */
    max-width: 85%;
    width: 100%;
}
@media (min-width: 768px) {
    .mon-contenu {
        max-width: 1050px; 
    }
}
h1 {    
    color:#93c01f;
    /*font-size: 3.1rem;*/
    font-size: clamp(1.6rem, 5vw, 3.1rem);
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 24px;
}
h1 strong {
    color:black;
}
h1 sup {
    font-size: 0.55em;
    line-height: 0;
    vertical-align: super;
    color: #334155;
}
ul {
    margin: 0;
    padding: 1rem;
}
p, li {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    /*padding-bottom: 1rem;*/
}
a {
  color: #86b642;
}
a.bouton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #93c01f;
    color: #FFF;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #93c01f;;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin-top: 15px;
}
a.bouton:hover {
    background-color: #FFF;
    color: #93c01f;
    border:1px solid #93c01f;
}
a.bouton:active {
    transform: scale(0.98);
}