body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
}
nav {
  background-color: #f3f3f3;
  border-bottom: 1px solid black;
  text-align: right;
  padding: 20px;
}
.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu li {
  display: inline;
  margin: 15px;
}
.menu a {
  color: black;
  text-decoration: none;
}
.voir-menu,
.cacher-menu,
#check {
  display: none;
}
@media screen and (max-width: 900px) {
  .voir-menu,
  .cacher-menu {
    display: block;
    font-size: 30px;
    cursor: pointer;
    transition: 0.5s;
  }
  .voir-menu:hover,
  .cacher-menu:hover {
    color: #777;
    transition: 0.5s;
  }
  .menu {
    /* sortir de l'écran */
    position: fixed;
    top: 0;
    right: -100%;
    /* 100% d'une hauteur d'une unité d'écran */
    height: 100vh;
    background-color: #f3f3f3;
    /* toute la hauteur */
    width: 100%;
    padding-top: 80px;
    transition: 0.8s;
    z-index: 200;
  }
  #check:checked ~ .menu {
    /* identifiant check avec pseudo-class checked,
    on cible les enfants (~) qui suit la classe menu */
    right: 0;
  }
  .cacher-menu {
    position: absolute;
    top: 40px;
    right: 40px;
  }
  .menu li {
    display: block;
    text-align: center;
    margin-bottom: 35px;
    border-bottom: 1px solid #ccc;
  }
}
