/*
  Auteur      : Esther Pham 
  Date        : 15.05.2023
  Description : mise en page des exercices
*/
body {
    margin: 10pt;
    background-color: brown;
}

#container {
    text-align: center;
    margin: auto;
}

#menu>div {
    padding: 15px;
    width: 100%;
}

a {
    font-size: 3em;
    color: rgb(179, 179, 156);
    padding: 5pt;
    border-style: solid;
    border-radius: 10pt;
    border-width: 2pt;
    background-color: black;
    text-decoration: none;
}

a:hover {
    text-decoration: dashed;
    background-color: brown;
}