/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
===Menu qui glisse===

#mon-menu, .sidebar {
    position: fixed;
    top: 180px;
    right: -250px;
    width: 200px;
    background: none;
    color: black;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: right 0.3s ease;
    z-index: 998;
    padding: 15px; /* Pour que le texte ne touche pas les bords */
}

#mon-menu.ouvert, .sidebar.ouvert {
    right: 0;
}

#mon-menu h3, .sidebar h3 {
    margin-top: 0;
}

#mon-menu ul, .sidebar ul {
    list-style: none;
    padding-left: 0;
}

#mon-menu a, .sidebar a {
    display: block;
    padding: 8px;
    color: black;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

#mon-menu a:hover, .sidebar a:hover {
    background: rgba(0,0,0,0.05);
}

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

