* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Anta", sans-serif;
    font-style: normal;
    /*background-image: url('../Images/Fond_5.jpg');*/
    background-color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* ====== Typographie ====== */
p, a, h2, h3, h4, h5, h6 {
    font-family: "Anta", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h4 {
    color: rgb(255, 255, 255);
}


em{
    color: #b80909;
}

p {
    color: blueviolet;
}

h1 {
    font-weight: 1000;
    font-style: normal;
    color: black;
}

.REDS {
    color: orangered;
    font-family: "Anta", sans-serif;
    font-weight: 800;
    font-style: normal;
    text-decoration: underline;
    text-underline-offset: 15px;   /* espace entre le texte et le soulignement */
    font-size: 60px;    /* augmenter la taille du texte */
    text-decoration-thickness: 3px;
}
.S-I {
    font-family: "Anta", sans-serif;
    font-weight: bold;
    font-style: normal;
    font-size: 60px;    /* Taille directement fixée */
    color: black;

}

.INTRO {
    display: flex;
    flex-direction: column;       /* Éléments verticaux */
    align-items: center;          /* Centre horizontalement chaque enfant */
    justify-content: center;      /* (Optionnel) centre verticalement si hauteur fixe */
    background: rgb(164, 241, 255);
    padding-top: 50PX;
    padding-bottom: 50px;
    text-align: center;           /* Centre le texte */
}
