.btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
button {
  position: relative;
  padding: 15px 45px;
  background-image: linear-gradient(
    to bottom,
    #051937,
    #46295c,
    #8f306b,
    #d13f5f,
    #fb6b3e
  );
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  border: 1px solid #46295c;
  border-radius: 8px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
  transition: 0.3s ease all;
}

button:hover {
  border: 1px solid #8f306b;
  background-image: linear-gradient(
    to bottom,
    #051937,
    #46295c,
    #8f306b,
    #d13f5f,
    #fb6b3e
  );
  animation: wind 2s ease-in-out infinite;
  filter: drop-shadow(0 0 5px #fb6b3e);
}

.icon-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  transform-origin: 0 0;
  transform: rotate(10deg);
  transition: all 0.5s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
  animation: slay-1 3s cubic-bezier(0.52, 0, 0.58, 1) infinite;
  transform: rotate(10deg);
  fill: #20a32d;
}

@keyframes slay-1 {
  0% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(10deg);
  }
}

.icon-2 {
  position: absolute;
  top: 0;
  left: 25px;
  width: 12px;
  transform-origin: 50% 0;
  transform: rotate(10deg);
  transition: all 1s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
  animation: slay-2 3s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
  transform: rotate(0);
  fill: #0d7617;
}

@keyframes slay-2 {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(15deg);
  }

  100% {
    transform: rotate(0);
  }
}

.icon-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  transform-origin: 50% 0;
  transform: rotate(-5deg);
  transition: all 1s ease-in-out;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
  animation: slay-3 2s cubic-bezier(0.52, 0, 0.58, 1) 1s infinite;
  transform: rotate(0);
  fill: #119a1f;
}
button:hover .icon-1 {
  fill: rgb(57, 208, 72);
}
button:hover .icon-2 {
  fill: #0bac1c;
}
button:hover .icon-3 {
  fill: #04fb1d;
}

@keyframes slay-3 {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0);
  }
}
