/* 1. MISE EN PAGE GLOBALE */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column; /* Aligne tout (logo, boutons, texte) verticalement */
    align-items: center;    /* Centre tout horizontalement dans la page */
    min-height: 100vh;
}

/* 2. STYLE DES TITRES (H2) */
h2 {
    color: #306930;
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 10px;
    text-align: center;
}

/* 3. STYLE DES PARAGRAPHES (P) */
p {
    color: #306930;
    font-size: 0.9rem; /* Légèrement agrandi pour la lisibilité */
    font-style: italic;
    line-height: 1.5;
    text-align: center;
}

/* 4. STYLE DES LIENS (LES BOUTONS) */
a {
    display: block;          /* Force le lien à devenir un bloc */
    width: 100%;             /* Prend la largeur dispo... */
    max-width: 640px;        /* ...mais s'arrête à 500px */
    
    margin: 10px 0;          /* Espace vertical entre les boutons */
    padding: 15px 20px;      /* Espace interne (confort visuel) */
    box-sizing: border-box;  /* Inclus le padding dans les 500px */
    
    text-align: center;      /* Centre le texte à l'intérieur du cadre */
    text-decoration: none;   /* Supprime le soulignement */
    
    font-size: 1.5rem;
    color: #306930;
    border: 1px solid #306930;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 10px;
    
    transition: all 0.3s ease; /* Animation fluide au survol */
}

/* 5. ÉTATS DES LIENS */
a:link, a:visited {
    color: #306930;
}

a:hover {
    color: #D69011;
    border-color: #D69011;
    background-color: rgba(190, 54, 139, 0.05); /* Léger fond au survol */
}

img {border: solid 1px #306930;
	padding: 10px;
	margin-bottom: 20px;
	box-shadow: 10px 15px 5px 3px #656565;
	}
