* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-size: 0;
}

.download a {
  font-size: 20px;
  color: blue;
}

.download {
  width: 200px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 5%;
  margin-bottom: 7.5%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: linear-gradient(to right top, #97298C, #00A79C);
}

.wrapper ul {
  display: flex;
  list-style-type: none;
}
.wrapper ul li {
  margin: 0 10px;
}
.wrapper ul li a {
  font-size: 100px;
  font-weight: 900;
  color: black;
  text-decoration: none;
  text-align: center;
  padding: 0 20px;
  display: block;
  position: relative;
}
.wrapper ul li a:before {
  content: "";
  width: 0;
  height: 50%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, orange, white);
  /* background-color: orange; */
  transition: 1s width;
}
.wrapper ul li a:after {
  content: "";
  width: 0;
  height: 50%;
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 0;
  background-image: linear-gradient(to left, green, white);
  /* background-color: green; */
  transition: 1s width;
}
.wrapper ul li a:hover:before {
  width: 100%;
}
.wrapper ul li a:hover:after {
  width: 100%;
}

/*# sourceMappingURL=style.css.map */
