h1{
    font : oblique 50px Arial, Helvetica, sans-serif;  
}
td{
    border-style: inset;
    border-width: 4px;
    box-shadow: 3px 3px 5px black;
    border-color: #efbd5a;
    font : oblique 14px Arial, Helvetica, sans-serif; 
    padding:6px;
    background-color:rgba(0,0,0,0.6);
}
tr{
    color : #ffffff;
}
body{
    background-image: url("../img/bg.jpeg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-attachment:fixed;
}

table.center {
    /*   margin-left:auto; 
        margin-right:auto;*/
    margin-top: 60px;
    margin-left: 10px;
}
#logo
{
    font-family:"perso";
    width:200px;
    height:200px;
    position:fixed;
    right:10px;
    top:40px;
    color:white;
    font-size:40px;
    z-index:-1;
    color: #ff8000;
    /*text-shadow: 0 -1px 4px #FFF, 0 -2px 10px #ff0, 0 -10px 20px #ff8000, 0 -18px 40px #F00;*/
    letter-spacing: 4px;
    overflow: hidden;
    background: linear-gradient(45deg, blue, #fff, yellow, red);
    background-repeat: no-repeat; background-size: 80%;
    animation: animate 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.5);

}
@keyframes animate { 
    0% 
    { 
        background-position: -500%; 
        text-shadow:5px 5px 10px orange;
    }
    100% 
    {
        background-position: 500%;
        text-shadow:5px 5px 10px red;} 
}

nav{
    position:fixed;
    top:0;
    color: #efbd5a;
    background-color:rgba(0,0,0,0.7);
    width:100%;
}
nav a
{
    margin-right:40px;
    color:#efbd5a;
    font-size: 15px;
    font-weight:bold;
    margin-right:10px;
}
nav ul li a
{
    margin-top:10px;
    margin-right:50px;
}
nav a:hover
{
    color:white;
}
.row{
    height:30px;
}
footer
{
    margin-bottom: 20px;
    width:100%;
    bottom:0;
    position:fixed;
    text-align:center;
    color:white;
    background-color:rgba(0,0,0,0.7);
}
#menu-deroulant, #menu-deroulant ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
#menu-deroulant {
    /* on centre le menu dans la page */
    text-align: center;
}
#menu-deroulant li {
    /* on place les liens du menu horizontalement */
    display: inline-block;
}
#menu-deroulant ul li {
    /* on enlève ce comportement pour les liens du sous menu */
    display: inherit;
}
#menu-deroulant a {
    text-decoration: none;
    display: block;
    color:#efbd5a;
}
#menu-deroulant ul {
    position: absolute;
    /* on cache les sous menus complètement sur la gauche */
    left: -999em;
    text-align: left;
    z-index: 1000;
}
#menu-deroulant li:hover ul {
    /* Au survol des li du menu on replace les sous menus */
    left: auto;
}
p{
    float: left;
}



