/*ceci est pour le style de la page*/
body {
    background-color: floralwhite;
    font-family: monospace;    
}
p {
    font-family: monospace
}
/*Le grand titre sera en skyblue*/
h1.art-shadow {
    text-shadow: 2px 4px 3px grey;
}
h1 {
    color: skyblue;
    text-align : center;
    font-family: monospace;
    font-weight: bolder;        
}
/*Les thèmes seront en lightskyblue et avec l'ecriture monospace*/
h2 {
    color: lightskyblue;
    text-align: center;
    font-family: monospace;
    font-weight: bolder;
    outline-color: azure;
    outline-style: groove;
    outline-width: thick;
}
/*les sous-titres seront en skyblue*/
h3 { 
    color: skyblue;
    font-weight: bolder;
}
/*liste a puces avec l'ecriture monospace*/
ul {
    font-family: monospace;
}
/* de la a */
ul.nav{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: grey;       
}
ul.nav a { 
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
ul.nav li{
    float: left;
}
li a.active{
    background-color: royalblue;
}
li a:hover:not(.active) {
    background-color: black;
}
a{
    color:black;
}
/*a la c'est pour faire la barre de navigation*/

/*le tableau a une bordure 1px solide en en noire*/
table, th, td {
    border: 1px solid black;
}   
/*le tableau prendra 50 pourcent de la largeur de la page et sera au centre*/
table{
    width: 50%;
    margin-left: auto;
    margin-right: auto;      
}

#alan{
    float: right;
}
#robot{
    float: right;
}
#texte1{
    text-align: center;
}
#texte2{
    text-align: right;
}