@font-face {
    font-family: Championne;
    src: url(fonts/Championne-Medium.otf);

    src: url(fonts/Championne-Medium.otf#iefix) format("opentype"),
        url(fonts/Championne-Medium.woff2) format("woff2"),
        url(fonts/Championne-Medium.woff) format("woff"),
        url(fonts/Championne-Medium.ttf) format("truetype");
    font-weight: 400;
    font-display: swap;
    font-style: normal
}

html {
    --background-color: #e9e6e1;
    --text-color-01: #590c00;
    --text-color-02: #a91700;
    --l-b-default: #decfb6;
    --l-t-default: #6e0f00;
    --l01-b: rgb(197, 227, 221);
    --l01-t: #8f2e08;
    --l02-b: rgb(212, 231, 158);
    --l02-t: #5c00d4;
    --l03-b: rgb(234, 185, 195);
    --l03-t: #001c97;


    /*COULEUR DU TEXTE SÉLECTIONNÉ*/
    ::selection {
        color: var(--background-color);
        background: var(--text-color-02);
    }
}

body {
    min-height: 90vh;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    justify-content: center;

    background-color: var(--background-color);

    font-size: 20px;
    font-family: 'Championne', Courier, monospace;
    color: var(--text-color-01);

}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-weight: 400;
}

.title {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;

    h1 {
        color: var(--text-color-02);
        font-size: 40px;
    }
    h3{
        font-size: 24px;
    }
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;

    a {
        padding: 10px 16px 10px 16px;
        text-decoration: none;
        color: var(--text-color-01);
    }

    a:hover {
        background-color: var(--l-b-default);
        color: var(--l-t-default);
    }

    #l01:hover {
        background-color: var(--l01-b);
        color: var(--l01-t);
    }

    #l02:hover {
        background-color: var(--l02-b);
        color: var(--l02-t);
    }

    #l03:hover {
        background-color: var(--l03-b);
        color: var(--l03-t);
    }
}

.picto {
    img {
        width: 160px;
        height: 80px;
    }

    .hover {
        display: none;
    }
}

.picto:hover {
    .normal {
        display: none;
    }

    .hover {
        display: inline;
    }
}