html {
    font-size: 62.5%;
}

body {
    margin-left: 20px;
    margin-right: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    counter-reset: heading;
    margin-bottom: 60px;
}


/* --------- Titles ---------- */

h1 {
    color: #cc051d;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 2.4rem;
    line-height: 20px;
    margin-bottom: 30px;
}

h2 {
    color: #cc051d;
    font-weight: 400;
    font-size: 2rem;
    text-transform: uppercase;
}

h2.numbered {
    position: relative;
    padding-left: 50px;
}

h2.numbered:before {
    content: counters(heading, "") " - ";
    counter-increment: heading;
    position: absolute;
    left: 10px;
    top: 0;
}


.subtitle {
    color: black;
    font-weight: 400;
    font-size: 1.5rem;
    text-transform: none;
}


h3 {
    color: #000;
    font-weight: 400;
    font-size: 1.6rem;
    text-transform: uppercase;
}



/* ----- ul ol li ------*/

ul {
    padding-left: 16px;
}

p+ ul {
    margin-top: -15px;
}

ol {
    padding-left: 0;
    counter-reset: item;
}

ol li {
    padding-left: 25px;
    list-style-type: none;
    position: relative;
}

ol li:before {
    content: counters(item, ".") " ";
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
}

ol li li {
    padding-left: 26px;
}

ol li a {
    color: black;
}


/* ------ content ----- */

p a {
    color: black;
   
}
p.debut{
     font-weight: 400;
}

p{
     font-weight: 300;
}

.center {
    text-align: center;
}

img.picto{
    height: 15px;
    width: auto;
    vertical-align: middle;
    
}
