* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Jost, "Adobe Hebrew", system-ui, sans-serif;
}
:root {
  --main-color: rgba(65, 78, 156, 1);
  --secondary-color: #356dfa;
  --usefull: #e8eef7;
}
body {
  background-color: var(--usefull);
}


/* Default font size */
p,
a,
label,
td,
th,
li {
  font-size: 16px;
}

/* Navbar Menu */
.navbar {
  /* Bouton donation */
  .donation {
  background: linear-gradient(45deg, red, blue);
  background-clip:text;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4);
  margin-left: 50px;
  color:transparent;
  font-size:16px;
  text-transform: uppercase;
  font-weight: 600;
  transition: .5s;
  border-radius:50px;
  }

  .donation:hover {
    background: linear-gradient(45deg, blue, red);
    color: white;
  }

  ul li {
    color: black;
    display: inline-block;
    padding: 5px 10px;
    position: relative;
    list-style: none;
  }

  ul li i {
    transition: 0.2s;
  }

  ul li:hover {
    i {
      transform: rotate(180deg);
      transition: transform 0.2s;
    }

    ul {
      display: block;
    }
  }
  ul li ul {
    display: none;
    position:absolute;
    background: linear-gradient(45deg, red, blue);
    padding:10px;
    white-space:nowrap;
  }

  ul li ul li {
    display: block;
    list-style: none;
    color:white;
  }
}

.leftSide {
  width:5%;
  height:100vh;
  position:fixed;
  transition:.5s;
  left:0;
  white-space: nowrap;

  .btn-menu {
    overflow:hidden;
    display: flex;
    align-items: center;
  }

  ul {
    padding:0;
  }

  ul li {
    list-style:none;
     overflow:hidden;
    display: flex;
    align-items: center;
    justify-content: start;
    width:100%;
    height:50px;
  }
  ul li::after {
    position:absolute;
    left:90%;
    content: attr(data-span);
    display: none;
    margin-left: 10px;
    color: #888;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.1);
    padding: 10px ;
  }
  #bouton::after {
    background: none;
  }
  #bouton {
    border: none !important;
  }

  ul li:hover::after {
    display: inline;
  }
  ul li:hover {
    background:rgba(0, 0, 0, 0.1);
    border-right:4px solid red;
  }

  ul li a {
    text-decoration: none;
    color: black;
    width:100%;
    height: 100%;
    display: flex;
    align-items: center;
  }

  ul li span {
    transition: .5s;
    margin-left:50px;
  }
  ul li i {
    font-size:20px;
    margin-left: 20px;
  }
}

.change .leftSide {
  width:15%;
  height:100vh;
  position:fixed;
  transition:.5s;
  left:0;

  ul li span {
    margin-left: 10px;
  }

  ul li:hover::after {
    display: none;
  }
}

.center {
  width:95%;
  margin-left:5%;
  transition:.5s;
}

.change .center {
  width:85%;
  margin-left:15%;

}
