/*
  Auteur      : Esther Pham 
  Date        : 15.05.2023
  Description : mise en page des exercices
  à utiliser si besoin --> https://css-tricks.com/snippets/css/a-guide-to-flexbox/
*/
body{
    margin: 10pt;
    background-color: brown;
}
h1{
    text-align: center;
    color: aliceblue;
}
#menu{
    display: flex;
    flex-grow: 5;
    justify-content: space-around;
}
#menu>div{
    width: 100%;
    
}
a{
    color: rgb(179, 179, 156);
    padding: 5pt;
    border-style: solid;
    border-width: 2pt;
    background-color: black;
    text-decoration: none;
}
a:hover{
    text-decoration: dashed;
    background-color: brown;
}
img{
    padding: 10pt;
    padding-left: 400pt;
    width: 850px;
    height: 480px;
}
footer{
    color: antiquewhite;
}
#piedDePage{
    display: flex;
    margin-top: 10pt;
}
#nomPrenom{
    padding-right: 82%;
}