:root {
    --color-bleu: #4361EE;
    --color-noir: #212529;
    --color-jaune: #FFC300;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

.texte {
    margin-top: 2dvh;
    margin-left: 0.5dvw;
    color: var(--color-orC);
    list-style: none;
    line-height: 1.5;
    letter-spacing: 0.8;
    flex-direction: column;
    display: flex;
    width: 99%;
    height: auto;
    justify-content: center;
    gap: 3px;
}

h1 {
    font-size: 25px;
    font-weight: 800;
    color: var(--color-orF);
}

h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-orF);
    margin-top: 7px;
}

a {
    text-decoration: none;
    color: var(--color-orC);
}
a:hover {color: var(--color-orF);}

strong {
    font-weight: 600;
    font-size: 16px;
}

p {
    font-size: 14px;
    font-weight: 400;
}

/*Media Query*/
@media screen and (max-height: 900px) {
    .texte {
        margin-top: 2dvh;
        margin-left: 4dvw;
        width: 90%;
        height: auto;
    }
}