html {
  font-family: -apple-system, BlinkMacSystemFont, "Rubik", "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: red;
}

body {
  margin: 0;
  padding: 0;
  background-image: url("assets/images/lignes.png");
  background-repeat: no-repeat;
  background-attachment:fixed;

}


ul {
  padding: 0;
  margin: 0;
}

h1 {
  color: black ;
  font-size: 50px;
  text-align: center; 
  margin-top: 10px;
  left:20px;
  font-family: 'Rubik', sans-serif;
  align-self: start;
}

a {
  color: currentColor;
  text-decoration: none;
}

strong, b {
  font-weight: 500;
}


/*début sidebar*/
#sidebar {
  z-index: 99999;
  position: fixed;
  width:200px;
  height: 100%;
  background: white; 
  left: -270px; /*de base, la sidebar est pas visible - 200px*/
  transition: all 700ms linear;
  /*border-right: 1px solid red;*/
  display: flex;
  align-items: center;
  justify-content: center;
  /*margin-left: 20px;*/
}


#sidebar.active {
  left: 0px; 
  /*quand je click sur toggle, sidebar vient à 0px*/
}

#sidebar .toggle-btn{
  position: absolute;
  left:275px;
  bottom:30px;
  cursor: pointer;
}

#sidebar.active .toggle-btn{
  left:150px;
  bottom:30px;
}

#sidebar .toggle-btn span{
  display: block;
  width:30px;
  height:4px;
  background-color: black;
  margin: 3px 10px;

}

#sidebar ul li {
  font-size: 20px;
  list-style: none;
  padding: 5px; 
  padding-left: 10px;
  /*border-bottom: 3px solid rgb(0,0,0);*/ 
  font-family: 'Rubik-MediumItalic', sans-serif;
  color: black;
  margin-left: 0px;
  margin-right: 10px;
  margin-top: auto;
  margin-bottom: 10px;
}

hr {
  margin-left:10px;
  height: 2px;
  background-color: black;
  margin-right:10px;

}

#sidebar img {
  width:40%;
  margin: 10px 50px 10px ;
  opacity: 0.8;
}

.accordion {
  cursor: pointer;
  width: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  transition: 0.6s;
  background-color: white;
  text-align: left;
  padding-left: 0px;
  color:black;
}


.panel {
  padding: 0 18px;
  max-height: 1; /*juste pcq mon script ne marche pas*/
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  color: black;
}

/*fin sidebar*/

@media only screen and (max-width: 524px) {


#sidebar .toggle-btn{
  position: absolute;
  left:700px;
  top:30px;
  cursor: pointer;
}

#sidebar.active .toggle-btn{
  left:210px;
  top:30px;
}

}