/* Commentaire sur une ligne */
body {   
    font-family: Georgia, "Times New Roman", Times, serif;  
    color: black;  
    background-color: rgb(106, 175, 255) ;
    margin: 0px;
    padding: 42px 0px;
}
h2 {
    color: rgb(0, 112, 112);
    background: white;
}
span{
    background: rgb(77, 124, 255);
    color: rgb(0, 49, 49);
}
h1 {
    background:#111;
    font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif ;
    color: red;
}

h5{
    color: blue;
}
p{
    font-style: italic;
}
li h4{
    color: rgb(0, 49, 49);
}
/* partie navigation */
ul.navbar {  
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    position: fixed;
    top: 0;
    width: 100%;
}
ul.navbar li {  
    float: left;
}
ul.navbar a {  
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none; 
}
ul.navbar a:hover:not(.active) {
    background-color: #111;
    text-decoration: underline;
}
.active {
    background-color: #3d8d40;
}

/* changer couleur des liens */
a:link {  
    color: blue ;
}
a:visited {  
    color: purple ;
}

/* les classes*/
.center {
    text-align: center;
}
.decale{
    padding-left: 8px;
}
