a:link { /* POur les liens */
    text-decoration: none;
    color: white;
}
a:visited {
    color:white;
}
a:hover { /* Toujours mettre à la fin*/
    text-decoration: underline;
    color:red;
}

body { /* image fond d'écran */ 
    background-color:DodgerBlue;
    background-size:cover;
    background-repeat: no-repeat;
}

/* Tous les paragraphe liés au fichier CSS */
p {
    font-family: 'Courier New', Courier, monospace;
    background-color: white;
    color: black;
    font-size: 2em;
}

/* Enlever le bullet de barre menu / selecteur de descendance */
ul {
    list-style-type:circle;
    color: white;
    padding-left: 100px;
    margin: 0pc;
    text-align:left;
}

.MenuPage {
    list-style-type:none;
    color: white;
}

h1 {
    font-size: 18pt;
    color: white;
}

h2 {
    font-size: 16pt;
    color: white;
}

div.h2-patou {
    font-size: 16pt;
    color:white; 
    text-decoration: underline; 
}

h3 {
    font-size: 12pt;
    color: white;
}

h4 {
    font-size: 10pt;
    color: white;
}

h5 {
    font-size: 8pt;
    color: white;
}

h6 {
    font-size: 6pt;
    color: white;
}

/*
* {
    box-sizing: border-box;
  }
  */

/* Create two equal columns that floats next to each other */
div.TableauColonne {
    background-color:blue;
    color: white;
    border-style: solid;
    border-color: darkblue;
    list-style-type:circle; /* enlever les bullet */
    float: left;
    width: 45%;
    padding: 10px;
    margin-left: 10px;
    height:auto; /* Should be removed. Only for demonstration */
  }
  
  /* Clear floats after the columns */
  div.TableauLigne:after {
    content: "";
    display: table;
    clear: both;
  }
