/* START MENU */
.menu {
  text-align: center;
  transition: 0.5s;
  left: -300px;
  z-index: 300;
  background-color: #43379d;
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 300px;
  top: 60px;
  bottom: 0;
}
.menu::after {
  content: "";
  background-image: url(../images/settings.png);
  background-size: cover;
  z-index: 15;
  position: absolute;
  top: calc(50% - 25px);
  right: -50px;
  width: 50px;
  height: 50px;
  background-color: #43379d;
  /* border-left: 35px solid #43379d;
  border-right: 35px solid transparent;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent; */
}
.menu:hover {
  left: 0;
}
.menu > * {
  color: #dbd9ec;
  margin: 20px;
}
.menu h3 {
  color: #dbd9ec;
}
.menu .backcolor {
  width: 100%;
}
.menu ul {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}
.menu ul li {
  cursor: pointer;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.menu ul .red {
  background-color: red;
}
.menu ul .green {
  background-color: green;
}
.menu ul .blue {
  background-color: blue;
}
.menu ul .black {
  background-color: black;
}
/* END MENU */
