/* ========================
   Reset et base
   ======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--black);
}

/* Couleurs d’arrière-plan génériques */

.dark-blue{
	background-color:var(--blue);
	color:var(--blanc);
}

.light-blue{
	background-color:var(--light-blue);
	color:var(--noir);
}

/* Texte */

h1 {
	font-size: 2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

a {
	color: var(--noir);
	transition: color 0.3s ease;
}

.small{
	font-size:0.6rem;
}

.justify{
	text-align:justify;
}