body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-family: sans-serif;
  background-color: #006266;
}

ul{
  margin: 0;
  padding: 0;
  display: flex;

}

li{
  list-style: none;
  margin: 0px 20px;
  transition: 0.5s;
}

a{
  display: block;
  position: relative;
  text-decoration: none;
  padding: 5px;
  font-size: 22px;
  color: white;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

ul:hover a{
  filter: blur(5px);
  opacity: .2;
}

ul a:hover{
  transform: scale(1.5);
  opacity: 1;
  filter: blur(0);
}

a::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ee5a24;
  transition: all .3s ease-in-out;
  transform: scale(0);
  z-index: -1;
}

a:hover::before{
  transform: scale(1);
}