/* SoiPro */
/* Feuille de style */
/* Mise en page de la page web SoiPro */
/* Date : 04/02/2023 */
/* Auteur : David DUBOIS */

html {
    /* background-color: #00539F; */
    font-size: 10px;
    /* px signifie 'pixels': la taille de base pour la police est désormais 10 pixels de haut  */
    font-family: 'Open Sans', sans-serif;
    /* cela devrait être le reste du résultat obtenu à partir de Google fonts */
}

body {
    /* width: 600px; */
    margin: 10px 50px 20px 0;
    /* marges haut,doite,bas,gauche */
    /* background-color: #FF9500; */
    /* padding: 0 20px 20px 20px; */
    /* border: 5px solid black; */
}

img {
    display: block;
    margin: 0 auto;
}

/* Titre principal */
/* SoiPro */

h1 {
    text-align: center;
    margin: 0;
    padding: 20px 0;
    /* color: #00539F;*/
    /* text-shadow: 3px 3px 1px black; */
    font-size: 2.6rem;
    font-weight: bold;
}

/* Titres secondaires */
/* Fondation + TC */

h2 {
    text-align: center;
    margin: 0;
    line-height: 4;
    letter-spacing: 2px;
    font-size: 2rem;
}

h3 {
    text-align: center;
    margin: 0;
    line-height: 3;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

/* Bas de Page */

h6 {
    text-align: center;
    margin: 0;
    line-height: 4;
    font-size: 1rem;
}

/* Paragraphes */

p {
    margin: 10px 50px 20px 10px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 1px;
    text-align: justify;
}

/* Liste / Titre en caractères gras */

pListeTitre {
    margin: 10px 50px 20px 10px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 1px;
    text-align: justify;
    font-weight: bold;
}

li {
    margin: 10px 20px 20px 20px;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: 1px;
    text-align: justify;
}

ul,
ol,
dl {
    font-size: 1.5rem;
}

ol {
    list-style-type: upper-roman;
    list-style-position: inside;
}

/* Styles des listes descriptives */

dd,
dt {
    line-height: 1.5;
}

dt {
    font-weight: bold;
}

/* Les tableaux */

table {
    border-collapse: collapse;
    border: 2px solid;
    letter-spacing: 2px;
    font-size: 2rem;
}

td, th {
    border: 1px solid;
    padding: 10px 20px;
}


td {
    text-align: center;
}

caption {
    padding: 10px;
}

/* End Of File */