/* --------------- */
/* RESET */
/* --------------- */
* {
	margin: 0;
	padding: 0;
}
*, *::before, *::after {
  box-sizing: border-box;
}


/* --------------- */
/* TEXTES */
/* --------------- */

/* p */
.md-typeset {
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 20px;
}

/* titres */
article h1:first-of-type {
  margin-top: 0;
}
article h1:not(:first-of-type) {
  margin-top: 40px;
}

.md-typeset h1 {
    margin-bottom: 18px;
    background-color: #fdabab;
    padding: 3px 4px;
    border-radius: 5px;
    font-weight: 900;
    color: black;
}

.md-typeset h2 {
    margin-top: 28px;
    margin-bottom: 10px;
    background-color: #55fba2;
    padding: 3px 4px;
    border-radius: 5px;
    font-weight: 700;
    color: black;
    font-size: 20px;
}

.md-typeset h3 {
    margin-top: 22px;
    margin-bottom: 10px;
    background-color: #aacdfd;
    padding: 3px 4px;
    border-radius: 5px;
    font-weight: 500;
    color: black;
    font-size: 18px;
}

.md-typeset h4 {
    margin-top: 13px;
    margin-bottom: 10px;
    background-color: #e3e3e3;
    padding: 3px 4px;
    border-radius: 5px;
    font-weight: 400;
    color: black;
    font-size: 16px;
}

/* Liste */
.md-typeset ul {
    margin-top: 2px;
}
.md-typeset ul li ul {
    margin-top: 2px;
}
.md-typeset ul li {
    margin-bottom: 2px;
}

/* Encadré */
.md-typeset .tip>.admonition-title {
    margin-bottom: 10px;
}

/* --------------- */
/* FOOTER */
/* --------------- */
.md-footer {
    margin-top: 50px;
}