@import url();

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #434750;
}
ul {
  position: relative;
  transform: skewY(-15deg);
  margin-left: 60px;
}
ul li {
  position: relative;
  list-style: none;
  width: 200px;
  background: #3e3f46;
  padding: 15px;
  z-index: var(--i);
  transition: 0.3s;
}
ul li:hover {
  background: #1e6a9c;
  transform: translateX(-30px);
}

.li2:hover {
  background: #1e6a9c;
  transform: translateX(30px);
}

ul li::before {
  content: "  ";
  position: absolute;
  top: 0;
  left: -40px;
  width: 40px;
  height: 100%;
  background: #2e3133;
  transform-origin: right;
  transform: skewY(45deg);
}

ul li:hover::before {
  background: #1f5378;
}

ul li::after {
  content: "  ";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: #35383e;
  transform-origin: bottom;
  transform: skewX(45deg);
  transition: 0.5s;
}
ul li:hover::after {
  background-color: #2982b9;
}
ul li a {
  text-decoration: none;
  color: #999;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: 0.5s;
}
ul li:hover a {
  color: #fff;
}
ul li:last-child::after {
  box-shadow: -100px 100px 20px rgba(0, 0, 0, 0.5);
}
