@import url('public.css');
.linkWrapper {
  box-sizing: border-box;
  width: 100%;
}
.linkWrapper .Wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 100px;
  box-sizing: border-box;
  gap: 30px;
}
.linkWrapper .Wrapper .this_button {
  display: flex;
  align-items: center;
  font-family: inherit;
  cursor: pointer;
  font-weight: 500;
  font-size: 17px;
  padding: 0.8em 1.3em 0.8em 0.9em;
  color: white;
  background: #ad5389;
  background: linear-gradient(to right, #6c97c9, #568ac7, #1e6ac5);
  border: none;
  letter-spacing: 0.05em;
  border-radius: 50px;
  width: 300px;
  justify-content: center;
}
.linkWrapper .Wrapper .this_button svg {
  margin-right: 3px;
  transform: rotate(30deg);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.linkWrapper .Wrapper .this_button span {
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.linkWrapper .Wrapper .this_button:hover svg {
  transform: translateX(5px) rotate(90deg);
}
.linkWrapper .Wrapper .this_button:hover span {
  transform: translateX(7px);
}
