:root {
    --color-prim: #ff0eff;
    --color-second: #ff1c00;
    --color-third: #dbdb03;
    --color-quar: #0000ff;
    --color-cinq:#2ae42a;
}

@font-face {
    font-family: Amiamie;
    font-weight: normal;
    font-style: normal;
    src: url(./fonts/Amiamie-RegularRound.woff2);
}

@font-face {
    font-family: Amiamie;
    font-weight: bold;
    font-style: normal;
    src: url(./fonts/Amiamie-BlackRound.woff2);
}

@font-face {
    font-family: Amiamie;
    font-weight: bold;
    font-style: italic;
    src: url(./fonts/Amiamie-BlackItalicRound.woff2);
}


html {
    font-family: Amiamie;
    font-size: 12pt;
    line-height: 14.4pt;

}

a {
    color: var(--color-quar);
    text-decoration: none;
}



.container {
    margin: 20px 20px 0 20px;
    display: flex;
    flex-direction: column;
}

.container p {
    font-size: 1.4rem;
    line-height: 1.8rem;
    margin: 0 0 20px 0;
    width: 80%;
}

.container header {
    margin: 0 0 0 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 50px;
}

.container header h1 {
    font-size: 2rem;
    font-weight: bold;
    -webkit-text-fill-color: var(--color-second);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--color-third);
}

.container header h1 em {
    font-style: italic;
}

.objet {
    margin: 0 0 70px 0;
    padding: 0 10px 0 0;
    display: flex;
    flex-direction: row;
}

.objet:first-child {
    margin-top: 40px;
}

.objet figure {
    width: 100%;
}


.objet figure img {
    width: 756px;
    border: solid 1px var(--color-prim);
    margin-top: 10px;
    margin-bottom: 15px;
}

.objet figure p {
    color: var(--color-quar);
    font-size: 1.4rem;
    line-height: 1.6;
}

.objet .texte {
    width: 50%;
    padding: 10px;
}

.objet .texte h1 {
    color: var(--color-cinq);
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.objet .texte p {
    color: var(--color-quar);
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.objet p strong {
    font-weight: bold;
    font-size: 1.4;
    -webkit-text-fill-color: var(--color-second);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--color-third);
}

.objet ul li:first-child {
    color: var(--color-quar);
    font-size: 1.4rem;
    line-height: 1.6rem;
    margin: 0;
}

.objet ul li {
    color: var(--color-cinq);
    font-size: 1.4rem;
    line-height: 1.6rem;
}

/* .objet ul li:last-child {
    margin-bottom: 30px;
} */


@media screen and (min-width: 1px) and (max-width: 720px) {

    .container p {
        font-size: 1rem;
        line-height: 1.2;
        width: 100%;
    }

    .container header h1 {
        font-size: 1.3rem;
    }

    .objet {
        flex-direction: column-reverse;
        margin: 0;
        padding: 0;
    }

    .objet .texte {
        padding: 0;
    }

    .objet .texte p {
        font-size: 1rem;
    }

    .objet figure img {
        width: 100%;
    }

    .objet figure p {
        font-size: 1rem;
        line-height: 1.2;
    }

    .objet p {
        font-size: 1rem;
    }

    .objet .texte {
        width: 100%;
    }

    .objet .texte h1 {
        margin: 50px 0 0 0;
    }

}