/*page entiere*/
body
{                          
    width: 800px;
    height: 560px;                      
    margin: auto;
    margin-top: 10px;
   border : white solid 3px;
}

/*style de l'entete*/
#entete
{
    width: 700px;
    height: 160px;       
    color: aqua;
    text-align: center;
    border : white solid 3px;
    margin: auto;
}

#entete h1
{
    margin-top: 5px;
}

/*style du menu*/
/*style du menu*/
#menu
{
    width : 100px;   
    height: 150px;    
    margin-top: 20px;
    float: left;  
    border : white solid 3px;        
}
      
#menu ul
{
    list-style-type : none;
    padding-left: 0px;   

}

#menu li
{
    margin: 10px;
    font-size: 20px;
}

#menu a
{
    color: aqua;
    text-decoration: none;
}

/*style du corps*/
#corps
{
    width: 680px;    
    height: 350px;    
    border : white solid 3px;
    margin-top: 20px; 
    overflow: auto;       
}
#corps p
{
    margin-top: 25px;
    color: gray;
    font-weight: bolder;
    text-align: center;
}