@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Poppins:wght@700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

h1 {
    font-family: var(--font-title);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

h2 {
    font-family: var(--font-title);
    margin: 0;
    font-size: 2.7rem;
    line-height: 1.2;
    font-weight: 600;
}

h3 {
    font-size: 1.2rem;
    margin: 0;
    margin-bottom: var(--s-3);
    font-weight: 300;
}

h4 {
    font-size: 1.2rem;
    margin: 0;
    margin-bottom: var(--s-3);
    font-weight: 300;
    color: var(--light);
}

p{
    margin-top: var(--s-4);
    margin-bottom: var(--s-4);
}

u{
  text-decoration-line: underline;
  text-decoration-color: var(--light); /* couleur du soulignement */
  text-decoration-thickness: 3px; /* épaisseur */
  text-underline-offset: 4px;     /* espace avec le texte */
}

.text-std { font-size: 1rem; }
.text-large { font-size: 1.2rem; }
.text-xlarge { font-size: 1.5rem; }

.light { color: var(--light); }
.grey { color: var(--grey); }
.dark { color: var(--dark); }
.green { color: var(--green); }
.red { color: var(--red); }

.center { text-align: center; margin: auto; }
.left { text-align: left; }
.right { text-align: right; }