* {
  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%;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-flow: column nowrap;
  gap: 50px;
  justify-content: center;
  align-items: center;
}
.wrapper div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 100px;
  font-size: 30px;
  font-weight: 900;
  color: snow;
  border-radius: 20px;
}

.first {
  background-image: linear-gradient(to right top, red, pink, red, pink, red, pink, red, pink, red, pink, red);
  background-size: 250% 100%;
  transition: 1s background-position;
}
.first:hover {
  background-position: right;
}

.second {
  background-image: linear-gradient(90deg, #ed1e79, #662d8c, #ed1e79);
  background-size: 300% 100%;
  transition: 1s background-position;
}
.second:hover {
  background-position: right;
}

.third {
  background-image: linear-gradient(45deg, lightgreen, #662d8c, lightgreen);
  background-size: 250% 100%;
  transition: 1s background-position;
}
.third:hover {
  background-position: right;
}

.fourth {
  background-image: linear-gradient(45deg, lightpink, blue, lightpink);
  background-size: 250% 100%;
  transition: 1s background-position;
}
.fourth:hover {
  background-position: right;
}

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