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

a {
    display: block;          /* Force le lien à devenir un bloc */
    width: 180px;
    min-height: 40px;
    
    box-sizing: border-box;
    
    padding: 5px;
    
    text-align: center;
    text-decoration: none;
    
    font-size: 1.2rem;
    color: #198FC2;
    border: 1px solid #198FC2;
    border-radius: 10px;    
    transition: all 0.3s ease; /* Animation fluide au survol */
    padding-left: 10px;
    padding-right: 10px;
}



a:link, a:visited {
    color: #198FC2;
}

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

td a {
  display: block;  /* Transforme le lien en bloc pour qu'il prenne 100% de la largeur */
  width: 100%;     /* S'assure qu'il couvre toute la largeur dispo */
  box-sizing: border-box; /* Évite les dépassements si vous ajoutez du padding */
}


p {
    color: #198FC2;
    font-size: 0.7rem; /* Légèrement agrandi pour la lisibilité */
    font-style: italic;
    line-height: 1.5;
    text-align: left;
}

h2 {
    color: #198FC2;
    font-size: 1.0rem;
    font-weight: normal;
    text-align: center;
    margin-bottom: 0px;
}

h3 {
    color: #198FC2;
    font-size: .8rem;
    font-weight: normal;
    text-align: left;
    margin-left: 40px;
    line-height: .6;
}

h4 {
    color: #198FC2;
    font-size: 1.0rem;
    font-weight: normal;
    text-align: center;
    margin-bottom: 0;
}

h1 {margin-bottom: 10px;}

h5 {
	font-size: 1.8rem;
	font-family: arial;
	color: #198FC2;
	margin-bottom: 10px;
}

table{
	margin-bottom: 20px;
}


