:root {
  --pageBlack: #262626;
  --pageYellow: #fadf72;
  --pagePurple: #552b55;
  --pageRed: #814995;
  --pageGreen: #2ce771;
  --grey: #879c9b;
  --lightGreen: #47bc9f;
  --pageGrey: #212121;
  --lightBlue: #acc0ce;
}
body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* overflow: hidden; */
  background-color: var(--lightBlue);
}
ul {
  padding: 0;
  margin: 0;
  display: flex;
  list-style-type: none;
}
ul li {
  color: white;
  font-size: 100px;
  font-weight: bold;
  letter-spacing: 10px;
  transition: all 2s;
}
ul:hover li {
  transform: rotate(45deg) translateY(-200px);
  opacity: 0;
  filter: blur(20px);
}
li:nth-child(1) {
  transition-delay: .1s;
}
li:nth-child(2) {
  transition-delay: .2s;
}
li:nth-child(3) {
  transition-delay: .3s;
}
li:nth-child(4) {
  transition-delay: .4s;
}
li:nth-child(5) {
  transition-delay: .5s;
}