@import url("https://fonts.googleapis.com/css?family=Raleway:400,400i,700");
body {
 background: #000000;
  display: flex;
  height: 50vh;
}

ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  list-style-type: none;

}
ul li {
  padding: 6px 0;
}
ul li a {
  position: relative;
  display: block;
  padding: 4px 0;
  font-size:45px;
  font-family: Raleway;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #008000;
  background: linear-gradient(#00FF00 0 100%) left/0 no-repeat;
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  transition: 0.3s linear;
}
ul li a:hover {
  background-size: 100%;
}