.Menu {
  width: 250px;
  margin: 15px;
}
.Menu > li {
  list-style: none;
  border-bottom: 1px solid #000;
}
.Menu > li > a {
  text-decoration: none;
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 15px 0;
}
.MenuIcon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.MenuIcon img {
  width: 100%;
  height: 100%;
}
.MenuTitle {
  /* text-align: center; */
  color: #fff;
  font-size: 22px;
  padding: 10px 20px;
  background: linear-gradient(134.17deg, #18d9cd 4.98%, #00b0a5 94.88%);
  border-radius: 8px;
}
@media (max-width: 450px) {
  .Menu {
    width: 100%;
  }
}
