:root {
    --color-inria-blue: #27348B;
    --color-inria-red: #E52A07;
    --color-inria-framboise: #AF1280;
    --color-inria-violet: #5D4B9A;
}
body {
    background: white;
    font-family: 'Inria Sans';
    padding: 3rem;
    line-height: 1.3;
    color: #000;
}

#title-header:before {
    content: "";
    position:absolute;
    top: 0;
    left: 0;
    width: 8em;
    height: 8em;
    background: rgb(229,42,7);
    background: linear-gradient(135deg, rgba(39,52,139,1) 0%, rgba(175,18,128,1) 35%, rgba(229,42,7,1) 66%); 

}
#title-header:after {
    content: "";
    position: absolute;
    top: 2.5em;
    left: 2.5em;
    width: 5.5em;
    height: 5.5em;
    background: #fff;
}

#title-header img {
    height: 4em;
    margin-left: 2em;
}
h1 {
    text-align: center;
    margin-bottom: 3em;
    color: #000;
    padding: 1em;
    font-size: xx-large;

}


h2 {
    margin-top: 2em;
    margin-bottom: 1em;
    width: fit-content;
    color: var(--color-inria-framboise);
}

h2 > span:first-child {
    color: white;
    background-color: var(--color-inria-framboise);
    padding: 0.2em;
    margin-right: 0.3em;
}


a {
    color: var(--color-inria-blue);
    text-underline-offset: 0.2em;
}

a[href^=http]:after {
    content: "\2197";
    color: var(--color-inria-violet);
    margin-left: 0.2em;
    width: 1rem;
    height: 1rem;
    display: inline-block;
}

#icons {
    text-align: center;
}

#icons a[href^=http]:after {
    content: "";
}
.framed {
    border: 1px solid var(--color-inria-blue);
    padding: 0.5em;
    margin-bottom: 1em;
}
table {
    border-collapse: collapse;
}
thead {
    font-weight: bold;
}
td {
    padding: 0.3em;
    border: 1px solid #cccccc;
    margin: 0;
}