.easybutton {
    width: max-content;
}

.button {
  position: relative;
  width: 256px;
  height: 64px;
  line-height: 64px;
  transition: all 0.3s;
    text-align: center;
}

.button span {
  transition: all 0.3s;
  transform: scale(1, 1);
}

.button::before, .button::after {
  content: '';
  position: absolute;
  transition: all 0.3s;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.button a {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    text-decoration: none;
    color: unset;
    z-index: 1;
}